null.h
来自「基于组件方式开发操作系统的OSKIT源代码」· C头文件 代码 · 共 18 行
H
18 行
/* $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 + =
减小字号Ctrl + -
显示快捷键?