⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mempcpy.c

📁 Axis 221 camera embedded programing interface
💻 C
字号:
/* Copy memory to memory until the specified number of bytes   has been copied, return pointer to following byte.   Overlap is NOT handled correctly.*//* Ditch the glibc version and just wrap memcpy. */#include <string.h>#undef mempcpy#undef __mempcpyvoid *__mempcpy (void *dstpp, const void *srcpp, size_t len){  memcpy(dstpp, srcpp, len);  return (void *)(((char *)dstpp) + len);}weak_alias (__mempcpy, mempcpy)

⌨️ 快捷键说明

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