Header: string.h
Syntax:
extern char *strpbrk
(
const char *string_1,
const char *string_2
);
Purpose: This function locates the first occurrence in the string pointed to by string_1 of any character from string_2. Returns pointer to character, or NULL.
|
|
|