|
libft
|
#include "libft.h"Go to the source code of this file.
Functions | |
| void * | ft_memchr (const void *s, int c, size_t n) |
| Scan memory for a character. | |
| void * ft_memchr | ( | const void * | s, |
| int | c, | ||
| size_t | n | ||
| ) |
Scan memory for a character.
Scans n bytes of memory from address s for a character c.
| s | Starting address |
| c | Character to find |
| n | Till how many bytes from the starting address s |
Definition at line 15 of file ft_memchr.c.