From 332ff7a104d978a607aae7239c70073c4e88fa22 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Fri, 21 Apr 2017 16:39:24 +0200 Subject: Remove unused string matching helpers --- matchcaseprefix.c | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 matchcaseprefix.c (limited to 'matchcaseprefix.c') diff --git a/matchcaseprefix.c b/matchcaseprefix.c deleted file mode 100644 index 7ba8335..0000000 --- a/matchcaseprefix.c +++ /dev/null @@ -1,20 +0,0 @@ -#include -#include "case.h" -#include "ldif.h" -#include "str.h" - -/* behave like strcmp, but also return 0 if s is a prefix of c. */ -int matchcaseprefix(struct string* s,const char* c) { - unsigned int l,l1,i; - if (!c) return -1; - l1=l=str_len(c); - if (s->ll; - i=case_diffb(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]); -} - -- cgit v1.2.3-55-g7522