strstr函数的用法
定义:strstr(str1,str2) 函数用于判断字符串str2是否是str1的子串。如果是,则该函数返回str2在str1中首次出现的地址;否则,返回NULL char Uart2_Buf[11] = "abSTARTdend; char Mystr1[20] = {0}; char *Mystr=Mystr1; //提取出Mystr ...