summaryrefslogtreecommitdiff
path: root/sys/src/libc/port/strpbrk.c
blob: bbd91eafb7a56de97249af7582a92574c4ea9b75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <u.h>
#include <libc.h>
#define	N	256

char*
strpbrk(char *cs, char *cb)
{
	char map[N];
	uchar *s=(uchar*)cs, *b=(uchar*)cb;

	memset(map, 0, N);
	for(;;) {
		map[*b] = 1;
		if(*b++ == 0)
			break;
	}
	while(map[*s++] == 0)
		;
	if(*--s)
		return (char*)s;
	return 0;
}