-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memset.c
executable file
·24 lines (22 loc) · 1.03 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memset.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ybolivar <ybolivar@student.42madrid.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/03/22 11:03:37 by ybolivar #+# #+# */
/* Updated: 2022/03/22 13:06:13 by ybolivar ### ########.fr */
/* */
/* ************************************************************************** */
#include"libft.h"
void *ft_memset(void *str, int c, size_t len)
{
unsigned char *buf;
buf = str;
while (len--)
{
*buf++ = (unsigned char)c;
}
return (str);
}