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

📄 logic.h

📁 this is a lp0 compilator new
💻 H
字号:
//// ********************************************************************// *// *   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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -