📄 null.h
字号:
/* $NetBSD: null.h,v 1.4 2000/05/19 18:57:48 thorpej Exp $ */#ifndef NULL#if !defined(__GNUG__) || __GNUG__ < 2 || (__GNUG__ == 2 && __GNUC_MINOR__ < 90)#if defined(__AUDIT__) && !defined(__cplusplus)/* * This will cause GCC to emit a warning if you attempt to use NULL * with some non-pointer object, return value, etc. */#define NULL (void *)0#else#define NULL 0#endif /* __AUDIT__ && !__cplusplus */#else#define NULL __null#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -