MicrOS
|
#include "../string.h"
Functions | |
char * | strpbrk (char *str1, const char *str2) |
Locate characters in string. More... | |
char* strpbrk | ( | char * | str1, |
const char * | str2 | ||
) |
Locate characters in string.
Returns a pointer to the first occurrence in str1 of any of the characters that are part of str2, or a null pointer if there are no matches.
str1 | C string to be scanned. |
str2 | C string containing the characters to match. |