From f476227930793f94e6ca9bd268b76bbf5c4f29c3 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Sat, 16 May 2015 00:52:36 +0000 Subject: C macros suck. Rewrote the case_diffb thing. --- src/libstddjb/case_diffb.c | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 src/libstddjb/case_diffb.c (limited to 'src/libstddjb/case_diffb.c') diff --git a/src/libstddjb/case_diffb.c b/src/libstddjb/case_diffb.c deleted file mode 100644 index 47e10bb..0000000 --- a/src/libstddjb/case_diffb.c +++ /dev/null @@ -1,32 +0,0 @@ -/* ISC license. */ - -#include -#include - -#ifdef SKALIBS_FLAG_REPLACE_LIBC - -int case_diffb (char const *s, unsigned int len, char const *t) -{ - register unsigned char x = 0, y = 0 ; - unsigned char const d = 'a' - 'A' ; - - while (len-- && (x == y)) - { - x = *s++ ; - if (('a' <= x) && (x <= 'z')) x -= d ; - y = *t++ ; - if (('a' <= y) && (y <= 'z')) y -= d ; - } - return (int)(x - y) ; -} - -#else - -#include - -int case_diffb (char const *s, unsigned int len, char const *t) -{ - return strncasecmp(s, t, len) ; -} - -#endif -- cgit v1.2.3