mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
10 lines
118 B
C
10 lines
118 B
C
#include <strings.h>
|
|
|
|
void bzero(void * s, size_t n) {
|
|
char *t = s;
|
|
while (n != 0) {
|
|
*t++ = 0;
|
|
n--;
|
|
}
|
|
}
|