summaryrefslogtreecommitdiffstats
path: root/matchcaseprefix.c
blob: 7ba83357b8169ac41689cdf01150975599d827a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <string.h>
#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->l<l1) l1=s->l;
  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]);
}