不使用库函数、自己编写的(strlen、strcpy、strcmp、strcat、memcmp、memcpy、memmove)
1 //求字符串长度的函数 2 int my_strlen(const char* pStr) 3 { 4 assert(pStr != NULL); 5 int length = 0; 6 while (*pStr++ != '
不使用库函数、自己编写的(strlen、strcpy、strcmp、strcat、memcmp、memcpy、memmove)
1 //求字符串长度的函数 2 int my_strlen(const char* pStr) 3 { 4 assert(pStr != NULL); 5 int length = 0; 6 while (*pStr++ != '