strcasecmp.c
资源名称:tcpmp.rar [点击查看]
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:0k
源码类别:
Windows CE
开发平台:
C/C++
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include <ctype.h>
- int strcasecmp(const char *__s1, const char *__s2)
- {
- register unsigned char c1, c2;
- while (*__s1 && *__s2) {
- c1 = tolower(*__s1);
- c2 = tolower(*__s2);
- if (c1 != c2)
- return (int)(c1 - c2);
- __s1++;
- __s2++;
- }
- return (int)(*__s1 - *__s2);
- }