core, pxe: Don't push on one stack and pop from the other in pxenv
[syslinux.git] / core / strcasecmp.c
blob2f7480d431e1e9704101dcbe6d616aa34ea31690
1 /*
2 * strcasecmp.c
3 */
5 #include <string.h>
6 #include <ctype.h>
8 int strcasecmp(const char *s1, const char *s2)
10 return strncasecmp(s1, s2, -1);