summaryrefslogtreecommitdiffstats
path: root/usr/klibc/strcspn.c
blob: 35fd38c7fb5cbb84b06a4f41b9973aa21a40f767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * strcspn
 */

#include <string.h>

#include "strxspn.h"

size_t strcspn(const char *s, const char *reject)
{
	return __strxspn(s, reject, 1);
}