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