常用C关于字符串操作的库函数实现:
//获取字符串长度 int Strlen(const char* s) { assert(s != NULL); int len = 0; while (*s++ != '