-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_strclr.c
18 lines (16 loc) · 968 Bytes
/
ft_strclr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strclr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: oadhesiv <oadhesiv@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/04/25 17:17:55 by oadhesiv #+# #+# */
/* Updated: 2019/04/25 17:18:21 by oadhesiv ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_strclr(char *s)
{
ft_bzero(s, ft_strlen(s));
}