mirror of
https://github.com/WerWolv/ImHex-Patterns.git
synced 2026-03-27 23:37:04 -05:00
* libstd: Initial standard library work bit operations, fixed point, numeric limits and math functions * libstd: Added ctype, rustint, stdint and string library, expand bit, fxpt and math library * patterns: Drastically improve ELF pattern * patterns: Added atmosphere AFE2 * patterns: tabs -> spaces * patterns: Added archive file pattern
14 lines
223 B
Plaintext
14 lines
223 B
Plaintext
namespace std {
|
|
|
|
using i8 = s8;
|
|
using i16 = s16;
|
|
using i32 = s32;
|
|
using i64 = s64;
|
|
using i128 = s128;
|
|
|
|
using f32 = float;
|
|
using f64 = double;
|
|
|
|
using usize = u64;
|
|
using isize = s64;
|
|
} |