摘要: /*strlen函数:返回字符串s长度*/int strlen(char *s){ int n; for(n=0;*s!='\0';s++) n++; return n;} #define ALLOCSIZE 10000 /*可用空间大小*/static char allocbuf(ALLOCSIZ 阅读全文
posted @ 2019-11-20 10:33 烟火流沙 阅读(300) 评论(0) 推荐(0) 编辑