-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strclr.c
28 lines (25 loc) · 1 KB
/
ft_strclr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strclr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tlevaufr <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/13 15:00:54 by tlevaufr #+# #+# */
/* Updated: 2017/12/05 17:29:24 by tlevaufr ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_strclr(char *s)
{
int i;
i = 0;
if (s != NULL)
{
while (s[i])
{
s[i] = '\0';
i++;
}
}
}