dmi: check both the AC and ID flags at the same time
[syslinux.git] / com32 / lib / strstr.c
blob0a3e743bc6419331bea6e0cebbe0320bd1a16d56
1 /*
2 * strstr.c
3 */
5 #include <string.h>
7 char *strstr(const char *haystack, const char *needle)
9 return (char *)memmem(haystack, strlen(haystack), needle, strlen(needle));