std::strpbrk
From cppreference.com
Defined in header <cstring>
|
||
const char* strpbrk( const char* dest, const char* breakset ); |
||
char* strpbrk( char* dest, const char* breakset ); |
||
Scans the null-terminated byte string pointed to by dest for any character from the null-terminated byte string pointed to by breakset, and returns a pointer to that character.
Contents |
[edit] Parameters
dest | - | pointer to the null-terminated byte string to be analyzed |
breakset | - | pointer to the null-terminated byte string that contains the characters to search for |