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

📄 stdint.h

📁 a super good method for designing finite state machine
💻 H
字号:
/*      stdint.h

        WG14/N843 C99 Standard, Section 7.18

        This header is part of the ANSI C99 standard library.
        It describes a number of useful integer types.
        This file is not part of the original Borland Turbo C++ 1.01
        distribution, which preceded the C99 standard.
 
        Currently, this file contains only the exact-width integer
        types and constants (see C99 Section 7.18.1.1)
*/

#ifndef __STDINT_H
#define __STDINT_H

#ifdef  __cplusplus
extern "C" {
#endif

/* Exact-width types. WG14/N843 C99 Standard, Section 7.18.1.1 */
typedef signed   char  int8_t;
typedef signed   int   int16_t;
typedef signed   long  int32_t;
typedef unsigned char  uint8_t;
typedef unsigned int   uint16_t;
typedef unsigned long  uint32_t;

#ifdef  __cplusplus
}
#endif

#endif /* __STDINT_H */

⌨️ 快捷键说明

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