FS#12756 by Marek Salaba - update Czech translation
[maemo-rb.git] / apps / plugins / mikmod / strstr.c
blobc2cf97ecde72ebe0fd6cc88fb320b13ff38e0621
1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
5 #include <string.h>
7 #include "mikmod_supp.h"
9 char *strstr(const char *haystack, const char *needle)
11 const char *scan;
12 size_t len;
13 char firstc;
15 firstc = *needle;
16 len = strlen(needle);
17 for (scan = haystack; *scan != firstc || strncmp(scan, needle, len); )
18 if (!*scan++)
19 return NULL;
20 return (char *)scan;