strpbrk

函数原型:extern char *strpbrk(char *str1, char *str2)

参数说明:str1待比较的字符串,str2为指定被搜索的字符串。
        
所在库名:#include <string.h>
  
函数功能:比较字符串str1和str2中是否有相同的字符,如果有,则返回该字符在str1中的位置的指针。
  
返回说明:返回指针,搜索到的字符在str1中的索引位置的指针。

你可能感兴趣的:(strpbrk)