摘要: #include <stdio.h>#include <stdlib.h>#include <string.h>#define MAX_STR 10000voidmakeEmpty(char** strset){ memset(strset, 0, MAX_STR*sizeof(char*));}voidinsert_t(char* str_p, char insert, char* str_alloc, int index){ int len = strlen(str_p); strncpy(str_alloc, str_p, len); int nbyt 阅读全文
posted @ 2011-04-28 14:20 Richard Zhong 阅读(969) 评论(0) 推荐(1) 编辑