stdint.h
来自「RTEMS (Real-Time Executive for Multiproc」· C头文件 代码 · 共 36 行
H
36 行
/* * rtems/stdint.h * * ISO C99 integer types * * $Id: stdint.h,v 1.1 2003/05/27 16:17:31 ralf Exp $ */#ifndef __rtems_stdint_h#define __rtems_stdint_h#ifdef __cplusplusextern "C" {#endif#include <rtems/score/types.h>/* * map RTEMS internal types onto C99 types */typedef signed8 int8_t;typedef signed16 int16_t;typedef signed32 int32_t;typedef signed64 int64_t;typedef unsigned8 uint8_t;typedef unsigned16 uint16_t;typedef unsigned32 uint32_t;typedef unsigned64 uint64_t;#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?