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

📄 memops.h

📁 Mesa is an open-source implementation of the OpenGL specification - a system for rendering interacti
💻 H
字号:
#ifndef DRIMEMSETIO_H#define DRIMEMSETIO_H/** memset an area in I/O space* We need to be careful about this on some archs*/static INLINE void drimemsetio(void* address, int c, int size){#if defined(__powerpc__) || defined(__ia64__)     int i;     for(i=0;i<size;i++)        *((char *)address + i)=c;#else     memset(address,c,size);#endif}#endif

⌨️ 快捷键说明

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