摘要: 1 wchar_t * matchEnd(wchar_t *text) 2 { 3 while(*text != (wchar_t)' ' && *text++ != '\0'); 4 return text; 5 } 6 7 wchar_t * matchValue(wchar_t *text, wchar_t **end) 8 { ... 阅读全文
posted @ 2016-04-05 17:08 joyce3800 阅读(252) 评论(0) 推荐(0)