📄 logic.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 + -