mirror of
https://github.com/cahirwpz/libnix.git
synced 2025-12-08 14:58:56 +00:00
12 lines
165 B
C
Executable File
12 lines
165 B
C
Executable File
#include <string.h>
|
|
|
|
void *memset(void *s,int c,size_t n)
|
|
{
|
|
unsigned char *ch = (unsigned char *)s;
|
|
while (n > 0) {
|
|
*ch++ = c;
|
|
n--;
|
|
}
|
|
return s;
|
|
}
|