1
0

stdint.h 191 B

123456789
  1. typedef int int8_t;
  2. typedef int int16_t;
  3. typedef int int32_t;
  4. typedef int int64_t;
  5. typedef unsigned uint8_t;
  6. typedef unsigned uint16_t;
  7. typedef unsigned uint32_t;
  8. typedef unsigned uint64_t;