-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memset.c
28 lines (25 loc) · 1.04 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memset.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vduriez <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/06/16 15:33:29 by vduriez #+# #+# */
/* Updated: 2020/08/21 14:34:38 by vduriez ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memset(void *s, int c, size_t n)
{
size_t i;
char *res;
i = 0;
res = (char *)s;
while (i < n)
{
res[i] = c;
i++;
}
return ((void*)s);
}