12 lines
No EOL
184 B
C
12 lines
No EOL
184 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;
|
|
} |