strlen实现
摘要:
size_t my_strlen(const char* str) { const char* ptr = str; for (; ((int)ptr & 0x03) != 0; ++ptr) { if (*ptr == '\0') return ptr - str; } unsigned int* ptr_d =... 阅读全文
posted @ 2017-04-11 21:05 yifi 阅读(235) 评论(1) 推荐(0)
浙公网安备 33010602011771号