crypt: fix the prototype of md5_sum, sha256_sum and sha512_sum
[musl] / src / string / strcasestr.c
1 #include <string.h>
2
3 char *strcasestr(const char *h, const char *n)
4 {
5         //FIXME!
6         return strstr(h, n);
7 }