You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
259 B

  1. #pragma once
  2. #include <stdint.h>
  3. typedef int8_t s8;
  4. typedef int16_t s16;
  5. typedef int32_t s32;
  6. typedef int64_t s64;
  7. typedef uint8_t u8;
  8. typedef uint16_t u16;
  9. typedef uint32_t u32;
  10. typedef uint64_t u64;
  11. typedef float f32;
  12. typedef long double f64;