The strpbrk function

Name

strpbrk -- 

Synopsis

#include <string.h>

size_t strpbrk (char *s1, char *s2);

Description

The strpbrk function locates the first occurrence in the string pointed to by s1 of any character from the string pointed to by s2.

Returns

The strpbrk function returns a pointer to the character, or a null pointer if no character from s2 occurs in s1.

Implementation Notes

None