摘要:
const char *word = pszLine; char word_buffer[EI_MAX_CHAR_NUM]; int addr = 0; bool last_word_is_space = false; while(1){ if(word[0] != ' ' && word[0] != '\t' && word[0] != 0){ ... 阅读全文
摘要:
const char *word = pszLine; char word_buffer[EI_MAX_CHAR_NUM]; int addr = 0; bool last_word_is_space = false; while(1){ if(word[0] != ' ' && word[0] != '\t' && word[0] != 0){ ... 阅读全文
|