ft_bzero: initial implementation

This commit is contained in:
Khaïs COLIN 2024-10-15 11:55:56 +02:00
parent 872595f75b
commit c820425285
3 changed files with 23 additions and 3 deletions

View file

@ -6,7 +6,7 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 10:11:54 by kcolin #+# #+# */
/* Updated: 2024/10/15 10:46:35 by kcolin ### ########.fr */
/* Updated: 2024/10/15 11:30:58 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
@ -24,5 +24,6 @@ int ft_isprint(int c);
t_size ft_strlen(const char *s);
void *ft_memset(void *dest, int c, t_size len);
void ft_bzero(void *b, t_size len);
#endif