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

View File

@@ -55,4 +55,10 @@ size_t ft_strlen(const char *s);
*/
void *ft_memset(void *b, int c, size_t len);
/*
The bzero() function writes n zeroed
bytes to the string s.
*/
void ft_bzero(void *s, size_t n);
#endif