10 lines
180 B
C
10 lines
180 B
C
|
|
#include <stddef.h>
|
||
|
|
#include "string.h"
|
||
|
|
|
||
|
|
void *memset(void *s, int c, size_t n) {
|
||
|
|
unsigned char *p = s;
|
||
|
|
while (n--) {
|
||
|
|
*p++ = (unsigned char)c;
|
||
|
|
}
|
||
|
|
return s;
|
||
|
|
}
|