summaryrefslogtreecommitdiff
path: root/src/libstddjb/case_diffn.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_diffn.c
parentd85c1a21f3c3f3229d958aabc744756c3fa811b4 (diff)
downloadskalibs-f476227930793f94e6ca9bd268b76bbf5c4f29c3.tar.xz
C macros suck. Rewrote the case_diffb thing.
Diffstat (limited to 'src/libstddjb/case_diffn.c')
-rw-r--r--src/libstddjb/case_diffn.c23
1 files changed, 23 insertions, 0 deletions
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 <skalibs/config.h>
+#include <skalibs/bytestr.h>
+
+#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