shithub: scc

ref: 9332f34cf7bae72b9ccaa290cae5a1eec3f34f3d
dir: /src/libc/string/strcspn.c/

View raw version
#include <string.h>
#undef strcspn

size_t
strcspn(const char *s1, const char *s2)
{
	const unsigned char *s = s1;
	const unsigned char *accept = s2;
	unsigned ch;
	size_t n;
	char buf[__NUMCHARS];

	memset(buf, 0, sizeof(buf));
	while (ch = *accept++)
		buf[ch] = 1;

	for (n = 0; (ch = *s++) && !buf[ch]; ++n)
		;

	return n;
}