?? memcpy.c
字號:
#include <string.h>
void *memcpy(void *s1, void *s2, size_t n)
{
unsigned char *cs1 = s1, *cs2 = s2;
while (n--)
*cs1++ = *cs2++;
return s1;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -