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

#include <string.h>

#include "strxspn.h"

size_t strspn(const char *s, const char *accept)
{
	return __strxspn(s, accept, 0);
}