Last change
on this file since 0292fbb was 5c13d64, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
Use void pointers for mem*() functions.
|
-
Property mode
set to
100644
|
File size:
398 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 |
|
---|
11 | void *memset(void *vp, char c, int n)
|
---|
12 | {
|
---|
13 | char *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.