摘要:
size_t strcspn ( const char * str1, const char * str2 );Get span until character in stringScansstr1for the first occurrence of any of the characters that are part ofstr2, returning the number of characters ofstr1read before this first occurrence.The search includes the terminating null-characters, s 阅读全文