|
libft
|
#include "libft.h"Go to the source code of this file.
Functions | |
| char * | ft_strnstr (const char *haystack, const char *needle, size_t len) |
| Search string from string. | |
| char * ft_strnstr | ( | const char * | haystack, |
| const char * | needle, | ||
| size_t | len | ||
| ) |
Search string from string.
Searches string from a string and returns the address of the start of the found string.
| haystack | String |
| needle | String |
| len | How many char to check |
Definition at line 18 of file ft_strnstr.c.