inttypes.h
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:1k
源码类别:

Audio

开发平台:

Visual C++

  1. #ifndef __INTTYPES_H__
  2. #define __INTTYPES_H__
  3. typedef char *  caddr_t;
  4. typedef char int8_t;
  5. typedef unsigned char u_int8_t;
  6. typedef short int16_t;
  7. typedef unsigned short u_int16_t;
  8. typedef int int32_t;
  9. typedef unsigned int u_int32_t;
  10. #ifdef _MSC_VER
  11. typedef __int64 int64_t;
  12. typedef unsigned __int64 u_int64_t;
  13. #else
  14. typedef long long int64_t;
  15. typedef unsigned long long u_int64_t;
  16. #endif
  17. typedef int32_t register_t;
  18. typedef u_int8_t uint8_t;
  19. typedef u_int16_t uint16_t;
  20. typedef u_int32_t uint32_t;
  21. typedef u_int64_t uint64_t;
  22. #endif /* __INTTYPES_H__ */