-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memset.c
30 lines (27 loc) · 1.06 KB
/
ft_memset.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
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memset.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akerkeb <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/01/21 23:13:28 by akerkeb #+# #+# */
/* Updated: 2016/01/21 23:13:31 by akerkeb ### ########.fr */
/* */
/* ************************************************************************** */
#include "fillit.h"
void *ft_memset(void *b, int c, size_t len)
{
int i;
char *x;
i = 0;
if (len == 0)
return (b);
x = (char *)b;
while (len--)
{
x[i] = c;
i++;
}
return (b);
}