-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memset.c
32 lines (29 loc) · 1.29 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
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* memset.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mhiguera <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/23 19:50:25 by mhiguera #+# #+# */
/* Updated: 2023/03/20 17:24:05 by mhiguera ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memset(void *b, int c, size_t len)
{
size_t i;
i = 0;
while (i < len)
{
((char *)b)[i] = (unsigned char) c;
i++;
}
return (b);
}
/*
* Escribe tantos bytes de c como len me hayan pasado en el string b.
* A través de un contador que se irá sumando mientras que sea inferior a la
* longitud len, voy cambiando cada valor del string original por lo que me
* hayan pasado como c.
*/