00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifdef HAVE_CONFIG_H
00012 #include "config.h"
00013 #endif
00014
00015 #include <ctype.h>
00016
00017
00018
00019 int strncasecmp(const char *str1, const char *str2, int n)
00020 {
00021 if (!str1 && !str2)
00022 return 0;
00023 if (!str1)
00024 return 1;
00025 if (!str2)
00026 return -1;
00027 if (n < 0)
00028 return 0;
00029 while (n &&
00030 *str1 &&
00031 *str2 &&
00032 tolower((unsigned char)*str1) == tolower((unsigned char)*str2))
00033 {
00034 str1++;
00035 str2++;
00036 n--;
00037 }
00038
00039 return n == 0 ? 0 :
00040 tolower((unsigned char)*str1) - tolower((unsigned char)*str2);
00041 }