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
c(generic_all_nodes)
memset
void * memset(void *b, int c, size_t len)
Definition:
memset.c:3
epsilon
liba
src
memset.c
Generated by
1.8.14