1.查找字符串用的函數web
# include《string》 char *strstr(const char *haystack, const char *needle)
做用:查找一組字符串中的某個單詞
例——》在 字符串 table[]={my name is startport} 查找 「name」
用法:
( 首先明確一點,返回值問題。
若找到單詞,返回當前第一個字母的地址。沒有則返回NULL)數組
if(strstr(table, "name") ) //查找有沒有這個單詞 { 找到; } whlie(!strstr(table, "name") ); 這個是等待接收到數據,再運行
2,memset(g_ucPswBuffer,0xff,PW_EEPROM_LENTH);svg
**做用**:用來寫入數組值,通常用來 初始化數組 例——》在 初始化數據 table[10]={} 爲oxff
用法:函數
memset(table,0xff,10);//目標數據地址,要初始化值,數組個數