📄 bool.h
字号:
/* bool.h - Boolean definitions *//* Copyright 1998-2010 Wind River Systems, Inc. *//* * modification history * -------------------- * 01a,25mar98,pai written * */#ifndef __INCBoolh#define __INCBoolh#ifdef __cplusplus enum Bool {False, True};#else typedef enum bool { False, True } Bool;#endif /* __cplusplus */#endif /* __INCBoolh */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -