-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strclr.c
21 lines (19 loc) · 991 Bytes
/
ft_strclr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strclr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tnghondz <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/05/28 22:41:40 by tnghondz #+# #+# */
/* Updated: 2018/05/28 22:42:15 by tnghondz ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_strclr(char *s)
{
if (s != '\0')
{
ft_bzero(s, ft_strlen(s));
}
}