array.h
来自「c语言是面向过程的程序语言」· C头文件 代码 · 共 41 行
H
41 行
#ifndef ARRAY_H#define ARRAY_H/* ****************************** * Object Oriented Programming in C * * Author: Laurent Deniau, Laurent.Deniau@cern.ch * * For more information, please see the paper: * http://home.cern.ch/ldeniau/html/oopc/oopc.html * ****************************** *//*---------------------------------*//* Specialized array interface *//*---------------------------------*//* integer array */#define gTypePrefix i#define gType1 int#include <g_array.h>#undef gType1#undef gTypePrefix/* double array */#define gTypePrefix d#define gType1 double#include <g_array.h>#undef gType1#undef gTypePrefix#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?