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_diffn.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/libstddjb/case_diffn.c (limited to 'src/libstddjb/case_diffn.c') diff --git a/src/libstddjb/case_diffn.c b/src/libstddjb/case_diffn.c new file mode 100644 index 0000000..0e75aa5 --- /dev/null +++ b/src/libstddjb/case_diffn.c @@ -0,0 +1,23 @@ +/* ISC license. */ + +#include +#include + +#ifdef SKALIBS_FLAG_REPLACE_LIBC + +int case_diffn (char const *s, char const *t, unsigned int len) +{ + 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) ; +} + +#endif -- cgit v1.2.3