摘要: #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 *... 阅读全文