NAME
strpbrk - search a string for any of a set of characters
SYNOPSIS
#include <string.h>
I char *strpbrk(const char * s , const char * accept );
DESCRIPTION
The
R strpbrk ()
function locates the first occurrence in the
string s of any of the characters in the string accept.
RETURN VALUE
The
R strpbrk ()
function returns a pointer to the character in
s that matches one of the characters in accept, or NULL
if no such character is found.
CONFORMING TO
SVr4, 4.3BSD, C89, C99.
SEE ALSO