1
0
mirror of https://github.com/UzixLS/KernelEx.git synced 2025-07-18 23:11:19 +03:00
Files
KernelEx/kexcrt/strstr.c
2018-11-03 16:21:13 +03:00

12 lines
185 B
C
Executable File

/*
* strstr.c
*/
#include <string.h>
char *strstr(const char *haystack, const char *needle)
{
return (char *)memmem(haystack, strlen(haystack), needle,
strlen(needle));
}