Numworks Epsilon  1.4.1
Graphing Calculator Operating System
memset.c
Go to the documentation of this file.
1 #include <string.h>
2 
3 void * memset(void * b, int c, size_t len) {
4  char * destination = (char *)b;
5  while (len--) {
6  *destination++ = (unsigned char)c;
7  }
8  return b;
9 }
c(generic_all_nodes)
void * memset(void *b, int c, size_t len)
Definition: memset.c:3