source: buchla-68k/libsm/memset.c@ 109c83b

Last change on this file since 109c83b was 109c83b, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Compiled full ROM in Hatari.

  • Property mode set to 100644
File size: 490 bytes
Line 
1/*
2 =============================================================================
3 memset.c -- fill memory
4 Version 1 -- 1987-06-12
5
6 Set an array of n chars starting at sp to the character c.
7 Return sp.
8 =============================================================================
9*/
10
11char *
12memset(sp, c, n)
13register char *sp, c;
14register int n;
15{
16 register char *sp0 = sp;
17
18 while (--n >= 0)
19 *sp++ = c;
20
21 return(sp0);
22}
Note: See TracBrowser for help on using the repository browser.