aboutsummaryrefslogtreecommitdiff
path: root/src/lib9/cistrcmp.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2003-11-23 18:12:54 +0000
committerrsc <devnull@localhost>2003-11-23 18:12:54 +0000
commitfd04aacee17b348da206c13a550dc1029669805f (patch)
tree9bdd35a25ff6e3d6e9a0171b06240a76723f922c /src/lib9/cistrcmp.c
parent74f990ad84deb1591ddb91be4fc8152ec0c46222 (diff)
downloadplan9port-fd04aacee17b348da206c13a550dc1029669805f.tar.gz
plan9port-fd04aacee17b348da206c13a550dc1029669805f.tar.bz2
plan9port-fd04aacee17b348da206c13a550dc1029669805f.zip
Various additions and fixes.
Diffstat (limited to 'src/lib9/cistrcmp.c')
-rw-r--r--src/lib9/cistrcmp.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/lib9/cistrcmp.c b/src/lib9/cistrcmp.c
new file mode 100644
index 00000000..a545615b
--- /dev/null
+++ b/src/lib9/cistrcmp.c
@@ -0,0 +1,26 @@
+#include <u.h>
+#include <libc.h>
+
+int
+cistrcmp(char *s1, char *s2)
+{
+ int c1, c2;
+
+ while(*s1){
+ c1 = *(uchar*)s1++;
+ c2 = *(uchar*)s2++;
+
+ if(c1 == c2)
+ continue;
+
+ if(c1 >= 'A' && c1 <= 'Z')
+ c1 -= 'A' - 'a';
+
+ if(c2 >= 'A' && c2 <= 'Z')
+ c2 -= 'A' - 'a';
+
+ if(c1 != c2)
+ return c1 - c2;
+ }
+ return -*s2;
+}