|
Libft
42 Libft library documentation
|
#include <stdlib.h>
Include dependency graph for ft_memchr.c:Go to the source code of this file.
Functions | |
| void * | ft_memchr (const void *s, int c, size_t n) |
| Scans a memory area for a byte value. | |
| void * ft_memchr | ( | const void * | s, |
| int | c, | ||
| size_t | n | ||
| ) |
Scans a memory area for a byte value.
| s | Pointer to the memory area. |
| c | Byte value to search for. |
| n | Number of bytes to inspect. |
Definition at line 23 of file ft_memchr.c.