summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/strcspn.c
blob: 37053c72c7208d046e11e8980e0d8111f3c97edb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <sys/types.h>
#include <string.h>

size_t strcspn(const char *s, const char *reject)
{
  size_t l=0;
  int a=1,i,al=strlen(reject);

  while((a)&&(*s))
  {
    for(i=0;(a)&&(i<al);i++)
      if (*s==reject[i]) a=0;
    if (a) l++;
    s++;
  }
  return l;
}