system.h

来自「RTEMS (Real-Time Executive for Multiproc」· C头文件 代码 · 共 37 行

H
37
字号
/* *  COPYRIGHT (c) 1988-2002. *  On-Line Applications Research Corporation (OAR). *  All rights reserved. * *  $Id: system.h,v 1.5 2002/01/17 21:47:47 joel Exp $ */#ifndef __SYSTEM_h#define __SYSTEM_htypedef unsigned int   unsigned32;typedef unsigned short unsigned16;typedef unsigned char  unsigned8;#define USE_INLINES #define STATIC static#define INLINE inline#ifndef NULL#define NULL 0#endiftypedef unsigned int   boolean;#if !defined( TRUE ) || (TRUE != 1)#undef TRUE#define TRUE     (1)#endif#if !defined( FALSE ) || (FALSE != 0)#undef FALSE#define FALSE 0#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?