摘要:
#include #include #include int my_strlen(char *s) { assert(s!=NULL); int count=0; while(*s!='\0') { s++; count++; } return count; } char *my_strcpy(char *... 阅读全文
posted @ 2016-10-01 14:30
mamahoohoo
阅读(272)
评论(0)
推荐(0)
2016年10月1日