Saturday, September 25, 2010

implement strcasecmp

使用google大法,发现VC没有strcasecmp和strncasecmp函数,只好为他做了一个补丁。
如下

在.h文文件中添加如下声明:
#ifdef _MSC_VER
int strcasecmp(char *s1, char *s2);
int strncasecmp(char *s1, char *s2, register int n);
#endif

在.c文件中添加如下实现
#ifdef _MSC_VER
int strcasecmp(char *s1, char *s2)
{
while (toupper((unsigned char)*s1) == toupper((unsigned char)*s2++))
if (*s1++ == '') return 0;
return(toupper((unsigned char)*s1) - toupper((unsigned char)*--s2));
}

int strncasecmp(char *s1, char *s2, register int n)
{
while (--n >= 0 && toupper((unsigned char)*s1) == toupper((unsigned char)*s2++))
if (*s1++ == '') return 0;
return(n < 0 ? 0 : toupper((unsigned char)*s1) - toupper((unsigned char)*--s2));
}
#endif

參考來源:

"使用google大法,发现VC没有strcasecmp和strncasecmp函数,只好为他做了一个补丁。"
- VC下编译libMPG123(补) : sunnyu (在「Google 網頁註解」中檢視)

No comments: