mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 01:34:15 +00:00
feat: add ft_bzero function
This commit is contained in:
6
ft_bzero.c
Normal file
6
ft_bzero.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include "libft.h"
|
||||
|
||||
void ft_bzero(void *s, size_t n)
|
||||
{
|
||||
ft_memset(s, 0, n);
|
||||
}
|
||||
Reference in New Issue
Block a user