fxlibc/src/libc/string/strstr.c

8 lines
150 B
C

#include <string.h>
#include "string_p.h"
char *strstr(char const *haystack, char const *needle)
{
return __strstr_base(haystack, needle, false);
}