shithub: scc

ref: 94ca1b27fc57c64bf0ee1dc95f1c58555aaf6e2a
dir: /src/libc/string/strpbrk.c/

View raw version
#include <string.h>

#undef strpbrk

char *
strpbrk(const char *s1, const char *s2)
{
	const unsigned char *s = s1;
	const unsigned char *accept = s2;
	unsigned ch;
	char map[__NUMCHARS] = {0};

	while ((ch = *accept++) != 0)
		map[ch] = 1;

	while ((ch = *s) != 0 && !map[ch])
		s++;

	return (ch == '\0') ? NULL : s;
}