mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-18 23:11:19 +03:00
12 lines
185 B
C
Executable File
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));
|
|
}
|