stdint.h 275 B

1234567891011
  1. #pragma once
  2. typedef __INT8_TYPE__ int8_t;
  3. typedef __INT16_TYPE__ int16_t;
  4. typedef __INT32_TYPE__ int32_t;
  5. typedef __INT64_TYPE__ int64_t;
  6. typedef __UINT8_TYPE__ uint8_t;
  7. typedef __UINT16_TYPE__ uint16_t;
  8. typedef __UINT32_TYPE__ uint32_t;
  9. typedef __UINT64_TYPE__ uint64_t;