-
Notifications
You must be signed in to change notification settings - Fork 2
/
ft_memset.c
23 lines (20 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memset.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adiaz-lo <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/05 11:40:17 by adiaz-lo #+# #+# */
/* Updated: 2020/01/13 12:58:04 by adiaz-lo ### ########.fr */
/* */
/* ************************************************************************** */
#include <string.h>
void *ft_memset(void *str, int c, size_t len)
{
unsigned char *string;
string = (unsigned char*)str;
while (len-- > 0)
*(string++) = (unsigned char)c;
return (str);
}