| STRPBRK(3) | Library Functions Manual | STRPBRK(3) | 
strpbrk —
#include <string.h>
char *
  
  strpbrk(const
    char *s, const char
    *charset);
strpbrk() function locates in the nul-terminated
  string s the first occurrence of any character in the
  string charset and returns a pointer to this character.
  If no characters from charset occur anywhere in
  s strpbrk() returns
  NULL.
strpbrk() function conforms to ANSI
  X3.159-1989 (“ANSI C89”).
| June 4, 1993 | NetBSD 10.0 |