summaryrefslogtreecommitdiff
path: root/src/libstddjb/case_diffn.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2017-02-17 22:30:53 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2017-02-17 22:30:53 +0000
commitfdffefb8032922ce7ffe4c00816072a8ff2148fc (patch)
treebc7313151a429c45d8bab8ad8b9dd32f4e51335f /src/libstddjb/case_diffn.c
parenta896ca2a8c617e5e00ffd5fc9e69331ad754e5b3 (diff)
downloadskalibs-fdffefb8032922ce7ffe4c00816072a8ff2148fc.tar.xz
More types changes
New disize Add size_t to the autotypes list Delete redundant and replace-libc files dev_t/ino_t pass Big size_t pass More things missing, still not operational yet
Diffstat (limited to 'src/libstddjb/case_diffn.c')
-rw-r--r--src/libstddjb/case_diffn.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/libstddjb/case_diffn.c b/src/libstddjb/case_diffn.c
deleted file mode 100644
index 0e75aa5..0000000
--- a/src/libstddjb/case_diffn.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/* 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