summaryrefslogtreecommitdiff
path: root/src/libstddjb/case_diffb.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2015-05-16 00:52:36 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2015-05-16 00:52:36 +0000
commitf476227930793f94e6ca9bd268b76bbf5c4f29c3 (patch)
tree733a6ac063c410f0012e7a6426d2f7d37d990adc /src/libstddjb/case_diffb.c
parentd85c1a21f3c3f3229d958aabc744756c3fa811b4 (diff)
downloadskalibs-f476227930793f94e6ca9bd268b76bbf5c4f29c3.tar.xz
C macros suck. Rewrote the case_diffb thing.
Diffstat (limited to 'src/libstddjb/case_diffb.c')
-rw-r--r--src/libstddjb/case_diffb.c32
1 files changed, 0 insertions, 32 deletions
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 <skalibs/config.h>
-#include <skalibs/bytestr.h>
-
-#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 <strings.h>
-
-int case_diffb (char const *s, unsigned int len, char const *t)
-{
- return strncasecmp(s, t, len) ;
-}
-
-#endif