|
Libft
42 Libft library documentation
|
#include <stdlib.h>
Include dependency graph for ft_memset.c:Go to the source code of this file.
Functions | |
| void * | ft_memset (void *s, int c, size_t len) |
| Fills a memory area with a byte value. | |
| void * ft_memset | ( | void * | s, |
| int | c, | ||
| size_t | len | ||
| ) |
Fills a memory area with a byte value.
| s | Pointer to the memory area. |
| c | Byte value used for filling. |
| len | Number of bytes to set. |
s pointer. Definition at line 23 of file ft_memset.c.
Referenced by ft_bzero(), and ft_calloc().
Here is the caller graph for this function: