summaryrefslogtreecommitdiffstats
path: root/matchprefix.c
diff options
context:
space:
mode:
Diffstat (limited to 'matchprefix.c')
-rw-r--r--matchprefix.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/matchprefix.c b/matchprefix.c
deleted file mode 100644
index 90d9bc2..0000000
--- a/matchprefix.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include "byte.h"
-#include "ldif.h"
-#include "bstr.h"
-
-/* behave like strcmp, but also return 0 if s is a prefix of c. */
-int matchprefix(struct string* s,const char* c) {
- unsigned int l,l1,i;
- if (!c) return -1;
- l1=l=bstrlen(c);
- if (s->l<l1) l1=s->l;
- c=bstrfirst(c);
- i=byte_diff(s->s,l1,c);
- if (i) return i;
- /* one is a prefix of the other */
- if (l==s->l) return 0;
- if (c[l1]) /* is c the longer string? */
- return 0;
- return -(int)(s->s[l1]);
-}
-