mirror of
https://github.com/guezoloic/libft.git
synced 2026-01-25 03:34:16 +00:00
7 lines
78 B
C
7 lines
78 B
C
#include "libft.h"
|
|
|
|
void ft_bzero(void *s, size_t n)
|
|
{
|
|
ft_memset(s, 0, n);
|
|
}
|