#include <cstring> char *strchr( const char *str, int ch );
strchr() 函式返回一個指向 str 中第一個出現的 ch 的指標,如果 ch 未找到,則返回 NULL。