Numworks Epsilon
1.4.1
Graphing Calculator Operating System
bzero.c
Go to the documentation of this file.
1
#include <
strings.h
>
2
3
void
bzero
(
void
* s,
size_t
n) {
4
char
*t = s;
5
while
(n != 0) {
6
*t++ = 0;
7
n--;
8
}
9
}
strings.h
bzero
void bzero(void *s, size_t n)
Definition:
bzero.c:3
epsilon
liba
src
bzero.c
Generated by
1.8.14