Created
October 20, 2024 06:07
-
-
Save Tomloyo/d67d2b0d5e4689c4171d1e03c2adb54e to your computer and use it in GitHub Desktop.
rust integer types in c++
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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