blob: ba53d02167dc9516ec982635983d1af2279904e5 [file] [log] [blame]
/*
* strpbrk
*/
#include "strxspn.h"
char *strpbrk(const char *s, const char *accept)
{
const char *ss = s + __strxspn(s, accept, 1);
return *ss ? (char *)ss : NULL;
}