|
libft
|
Go to the source code of this file.
Functions | |
| void * | ft_memset (void *b, int c, int len) |
| Fill memory area with a contant byte. | |
| void * ft_memset | ( | void * | b, |
| int | c, | ||
| int | len | ||
| ) |
Fill memory area with a contant byte.
Fills len number of bytes of memory with c.
| b | Memory address |
| c | Value to set the bytes to |
| len | Number of bytes |
Definition at line 13 of file ft_memset.c.