Libft(13) - strnstr
Libft(13) - strnstr STRSTR(3) BSD Library Functions Manual STRSTR(3) NAME strstr, strcasestr, strnstr -- locate a substring in a string LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include char * strstr(const char *haystack, const char *needle); char * strcasestr(const char *haystack, const char *needle); char * strnstr(const char *haystack, const char *needle, size_t len); #include #include..
2021.06.26