-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strset.c
29 lines (26 loc) · 1.06 KB
/
ft_strset.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
29
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strset.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ademenet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/12/17 10:22:13 by ademenet #+# #+# */
/* Updated: 2015/12/17 10:33:31 by ademenet ### ########.fr */
/* */
/* ************************************************************************** */
#include <string.h>
#include "libft.h"
char *ft_strset(char *s1, int fill)
{
int i;
i = 0;
if (!s1)
return (NULL);
while (s1[i] != '\0')
{
s1[i] = (char)fill;
i++;
}
return (s1);
}