⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stdint.h

📁 事件驱动程序设计很好的框架
💻 H
字号:
/****stdint.h - WG14/N843 C99 Standard, Section 7.18***Purpose:*       This header is part of the ANSI C99 standard library, but*       is not included in the Visual C++ distribution.**       Currently, this file contains only the 6 most basic*       exact-width integer types (see C99 Section 7.18.1.1).*       [ANSI]**       [Public]*****/#if     _MSC_VER > 1000#pragma once#endif#ifndef _INC_STDINT#define _INC_STDINT#ifdef  __cplusplusextern "C" {#endif/* Exact-width types. WG14/N843 C99 Standard, Section 7.18.1.1 */typedef signed   char      int8_t;typedef signed   short     int16_t;typedef signed   long      int32_t;typedef unsigned char      uint8_t;typedef unsigned short     uint16_t;typedef unsigned long      uint32_t;#ifdef  __cplusplus}#endif#endif  /* _INC_STDINT */

⌨️ 快捷键说明

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