#include <cstring> char *strchr( const char *str, int ch );
strchr() 函数返回一个指向 str 中第一个出现的 ch 的指针,如果 ch 未找到,则返回 NULL。