-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_strclr.c
23 lines (20 loc) · 1009 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
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strclr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vbrazas <vbrazas@student.unit.ua> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/05 17:22:17 by vbrazas #+# #+# */
/* Updated: 2017/11/12 18:24:20 by vbrazas ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_strclr(char *s)
{
size_t i;
i = 0;
if (s != NULL)
while (s[i])
s[i++] = '\0';
}