lang-bootstrap/05/musl-final/src/string/bzero.c
2025-04-05 10:55:40 +01:00

7 lines
94 B
C

#include <string.h>
#include <strings.h>
void bzero(void *s, size_t n)
{
memset(s, 0, n);
}