-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memset.c
30 lines (27 loc) · 1.11 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: ashongwe <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/06/07 07:40:35 by ashongwe #+# #+# */
/* Updated: 2019/06/13 17:01:35 by ashongwe ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memset(void *str, int c, size_t n)
{
size_t a;
unsigned char b;
unsigned char *pointer;
a = 0;
b = (unsigned char)c;
pointer = (unsigned char*)str;
while (a < n)
{
pointer[a] = b;
a++;
}
return (str);
}