memory.h

来自「Motorola synergy audio component」· C头文件 代码 · 共 30 行

H
30
字号
#ifndef MEMORY_INCLUDE#define MEMORY_INCLUDE/* the real memory include file */#include <string.h>extern void *memcpy_b(        /*        Ptr to the destination buffer in memory.  Must be at least        'count' bytes long.        */    void *dest_ptr,                /*        Ptr to the source buffer in memory.        */    const void *source_ptr,            /*        Number of bytes to copy.        */    size_t count);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?