global.h

来自「scope is a very good software with sourc」· C头文件 代码 · 共 40 行

H
40
字号
/************************************************************************************* Filename         : global.h*** Purpose          : Some global definitions*** Author           : Matt J. Gumbley*** Created          : 19/01/97*** Last updated     : 26/01/97***************************************************************************************** Modification Record**********************************************************************************/#ifndef GLOBAL_H#define GLOBAL_H#include <config.h>#ifndef TRUE#define TRUE 1#endif#ifndef FALSE#define FALSE 0#endif#if defined(HAVE_SIZED_INT_TYPES)#include <sys/types.h>typedef u_int8_t byte;typedef u_int16_t word16;typedef u_int32_t word32;#else/* Shouldn't happen */#error Cannot compile program without sized int types!#endif#endif /* GLOBAL_H */

⌨️ 快捷键说明

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