inttypes.h
资源名称:chapter15.rar [点击查看]
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:1k
源码类别:
Audio
开发平台:
Visual C++
- #ifndef __INTTYPES_H__
- #define __INTTYPES_H__
- typedef char * caddr_t;
- typedef char int8_t;
- typedef unsigned char u_int8_t;
- typedef short int16_t;
- typedef unsigned short u_int16_t;
- typedef int int32_t;
- typedef unsigned int u_int32_t;
- #ifdef _MSC_VER
- typedef __int64 int64_t;
- typedef unsigned __int64 u_int64_t;
- #else
- typedef long long int64_t;
- typedef unsigned long long u_int64_t;
- #endif
- typedef int32_t register_t;
- typedef u_int8_t uint8_t;
- typedef u_int16_t uint16_t;
- typedef u_int32_t uint32_t;
- typedef u_int64_t uint64_t;
- #endif /* __INTTYPES_H__ */