mirror of
https://github.com/fluencelabs/musl
synced 2025-06-07 20:11:49 +00:00
8 lines
104 B
C
8 lines
104 B
C
|
#include <string.h>
|
||
|
|
||
|
char *strcasestr(const char *h, const char *n)
|
||
|
{
|
||
|
//FIXME!
|
||
|
return strstr(h, n);
|
||
|
}
|