ti83-sdk/lib83/memset.c

13 lines
176 B
C
Raw Normal View History

2023-10-08 12:54:13 +00:00
#include <string.h>
void * memset(void * buf, unsigned char ch, size_t count) {
unsigned char * ret = buf;
while (count--)
*ret++ = ch;
return buf;
}