Skip to content

Instantly share code, notes, and snippets.

@Tomloyo
Created October 20, 2024 06:07
Show Gist options
  • Save Tomloyo/d67d2b0d5e4689c4171d1e03c2adb54e to your computer and use it in GitHub Desktop.
Save Tomloyo/d67d2b0d5e4689c4171d1e03c2adb54e to your computer and use it in GitHub Desktop.
rust integer types in c++
typedef signed char i8;
typedef unsigned char u8;
typedef signed int i16;
typedef unsigned int u16;
typedef signed long i32;
typedef unsigned long u32;
typedef signed long long i64;
typedef unsigned long long u64;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment