diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-05-16 00:52:36 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-05-16 00:52:36 +0000 |
commit | f476227930793f94e6ca9bd268b76bbf5c4f29c3 (patch) | |
tree | 733a6ac063c410f0012e7a6426d2f7d37d990adc /src/libstddjb/case_diffb.c | |
parent | d85c1a21f3c3f3229d958aabc744756c3fa811b4 (diff) | |
download | skalibs-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.c | 32 |
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 |