mirror of
https://github.com/fluencelabs/musl
synced 2025-06-26 05:02:02 +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);
|
||
|
}
|