2006年1月12日
摘要: #include #include #include /* 取子串的函数 */ static char* substr(const char*str,unsigned start, unsigned end) { unsigned n = end - start; static char stbuf[256]; strncpy(stbuf, str + start, n); stbuf[n]... 阅读全文
posted @ 2006-01-12 20:38 DAVID'S BLOG 阅读(470) 评论(0) 推荐(0) 编辑