logic.h

来自「this is a lp0 compilator new」· C头文件 代码 · 共 36 行

H
36
字号
//// ********************************************************************// *// *   Author        : Gerald Carter// *   File          : logic.h// *   Created       : 931001// *// *   Description   : This is a simple typedef of boolean variable along// *                   with the associated macros for boolean operators// *// *   ---------------------// *   Modifications// *   ---------------------// *// ********************************************************************//#ifndef LOGIC_H#define LOGIC_H// MACROS#define TRUE 1#define FALSE 0#define AND &&#define OR ||#define NOT !// TYPEDEFStypedef int boolean;#endif//********* end logic.h ***********************************************//*********************************************************************

⌨️ 快捷键说明

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