source:
bootcd/isolinux/syslinux-6.03/core/strcasecmp.c
Last change on this file was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 151 bytes |
Rev | Line | |
---|---|---|
[e16e8f2] | 1 | /* |
2 | * strcasecmp.c | |
3 | */ | |
4 | ||
5 | #include <string.h> | |
6 | #include <ctype.h> | |
7 | ||
8 | int strcasecmp(const char *s1, const char *s2) | |
9 | { | |
10 | return strncasecmp(s1, s2, -1); | |
11 | } |
Note: See TracBrowser
for help on using the repository browser.