source:
bootcd/isolinux/syslinux-6.03/core/strcasecmp.c
@
dd1be7c
Last change on this file since dd1be7c was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 151 bytes |
Line | |
---|---|
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.