add: bzero

This commit is contained in:
2025-01-22 14:44:12 +01:00
parent 2ba4037af2
commit 494a0f425c
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#include "string.h"
void bzero(void *s, size_t n)
{
memset(s, 0, n);
}