?? bcopy.c
字號:
/* * linux/lib/string.c * * Copyright (C) 1991, 1992 Linus Torvalds */#include <sys/types.h>#include <string.h>#include <ctype.h>#include "libc_segments.h"#ifndef __HAVE_ARCH_BCOPY#undef bcopychar * bcopy(const char * src, char * dest, int count) SEG_LIBC;char * bcopy(const char * src, char * dest, int count){ char *tmp = dest; while (count--) *tmp++ = *src++; return dest;}#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -