?? myfunc.c
字號:
/* *src甫 numbytes父怒 *dest欄肺 墨喬茄促. */
void Move( unsigned char *src, unsigned char *dest, unsigned int numbytes )
{
if ( numbytes <= 0 )
return;
if ( src < dest ) {
src += numbytes;
dest += numbytes;
do {
*--dest = *--src;
} while ( --numbytes > 0 );
} else {
do {
*dest++ = *src++;
} while ( --numbytes > 0 );
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -