bcopy : 复制内存区域
#include <string.h>void bcopy(const char *in, char *out, size_t n);```### 描述
此函数将从 in 指向的内存区域复制 n 个字节到 out 指向的内存区域。
此函数是基于 memmove 实现的。
---
**权威来源**: BUSMASTER DITA help source `bcopy.dita`, compiled into `BUSMASTER.CHM` with the application.