strcpy()、memcpy()、memmove()、memset()的实现
摘要:strcpy(), 字符串拷贝.char *strcpy(char *strDest, const char *strSrc){ assert((strDest!=NULL) && (strSrc !=NULL)); char *address = strDest; while( (*strDest
阅读全文
posted @ 2021-05-08 15:42
posted @ 2021-05-08 15:42
posted @ 2021-05-08 15:39