📄 fbits.h
字号:
/* * Copyright 1995, University Corporation for Atmospheric Research * See top level COPYRIGHT file for copying and redistribution conditions. *//* $Id: fbits.h 2501 2007-11-20 02:33:29Z benkirk $ */#ifndef _FBITS_H_#define _FBITS_H_/* * Macros for dealing with flag bits. */#define fSet(t, f) ((t) |= (f))#define fClr(t, f) ((t) &= ~(f))#define fIsSet(t, f) ((t) & (f))#define fMask(t, f) ((t) & ~(f))/* * Propositions *//* a implies b */#define pIf(a,b) (!(a) || (b))/* a if and only if b, use == when it makes sense */#define pIff(a,b) (((a) && (b)) || (!(a) && !(b)))#endif /*!FBITS_H_*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -