摘要:
#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
阅读(477)
评论(0)
推荐(0)
浙公网安备 33010602011771号