X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=common-src%2Fstrcasecmp.c;fp=common-src%2Fstrcasecmp.c;h=0000000000000000000000000000000000000000;hb=d3b2175e084f88c8736ad7073eacbf4670147aec;hp=ac5f79f0948607ea52230906bf56edb202d59750;hpb=34197d9f46a5f4e944378cbb65fca32ee0eec7b9;p=debian%2Famanda diff --git a/common-src/strcasecmp.c b/common-src/strcasecmp.c deleted file mode 100644 index ac5f79f..0000000 --- a/common-src/strcasecmp.c +++ /dev/null @@ -1,25 +0,0 @@ -/* Provided by Michael Schmitz ; public domain? */ -#include "amanda.h" - -/* Compare S1 and S2 ignoring case, returning less than, - equal to or greater than zero if S1 is lexicographically - less than, equal to or greater than S2. */ -int -strcasecmp( - const char *s1, - const char *s2) -{ - register const unsigned char *p1 = (const unsigned char *) s1; - register const unsigned char *p2 = (const unsigned char *) s2; - unsigned char c1, c2; - - if (p1 == p2) - return 0; - - do { - c1 = tolower (*p1++); - c2 = tolower (*p2++); - if (c1 == '\0' || c2 == '\0' || c1 != c2) - return c1 - c2; - } while ( 1 == 1 ); -}