mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-04-19 09:27:00 +02:00
7 lines
150 B
C
7 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);
|
|
}
|