📄 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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -