source: buchla-68k/libsm/memset.c@ 7258c6a

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

Use standard integer types.

  • Property mode set to 100644
File size: 406 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 vp to the character c.
7 Return vp.
8 =============================================================================
9*/
10
11void *memset(void *vp, int8_t c, int16_t n)
12{
13 int8_t *cp = vp;
14
15 while (--n >= 0)
16 *cp++ = c;
17
18 return(vp);
19}
Note: See TracBrowser for help on using the repository browser.