truth.h
来自「汇编源代码大全2」· C头文件 代码 · 共 14 行
H
14 行
/*
* truth.h 14 Sep 83
*
* This is the truth.
*/
typedef int bool; /* A true believer. */
typedef int tris; /* Yes, no, or maybe. */
#define FALSE 0 /* Negative. */
#define TRUE 1 /* Positive. */
#define MAYBE 2 /* Perhapsative. */
/* Ideally, FALSE < MAYBE < TRUE. */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?