feat: add ft_bzero function

This commit is contained in:
2025-09-30 19:33:39 +02:00
parent 738c3edf62
commit 63d4127817
2 changed files with 12 additions and 0 deletions

6
ft_bzero.c Normal file
View File

@@ -0,0 +1,6 @@
#include "libft.h"
void ft_bzero(void *s, size_t n)
{
ft_memset(s, 0, n);
}