摘要: 1 static int GetStringType(const char *src) 2 { 3 // is '-' or digit ? 4 if (*src == '-' || isdigit(*src)) 5 { 6 // "1" 7 if (isdigit(*src) && !*(src + 1)) 8 ... 阅读全文
posted @ 2016-05-23 13:28 Akatsuki- 阅读(528) 评论(0) 推荐(0) 编辑