ft_bzero: initial implementation
This commit is contained in:
parent
872595f75b
commit
c820425285
3 changed files with 23 additions and 3 deletions
3
libft.h
3
libft.h
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue