stdint.h

来自「freedos32的源代码」· C头文件 代码 · 共 13 行

H
13
字号
#ifndef __STDINT_H__#define __STDINT_H__#include <sys/types.h>typedef unsigned long int uint32_t;typedef unsigned short int uint16_t;typedef unsigned char uint8_t;typedef long int int32_t;typedef short int int16_t;typedef char int8_t;#endif

⌨️ 快捷键说明

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