C++ Programming/Code/Standard C Library/Functions/strpbrk
< C++ Programming < Code < Standard C Library < Functionsstrpbrk
Syntax |
#include <cstring>
char * strpbrk( const char *str, const char *ch );
|
The function strchr() returns a pointer to the first occurrence of any character within ch in str, or NULL if no characters were not found.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.