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
21 lines
395 B
Plaintext
21 lines
395 B
Plaintext
namespace std {
|
|
|
|
using uint8_t = u8;
|
|
using uint16_t = u16;
|
|
using uint32_t = u32;
|
|
using uint64_t = u64;
|
|
using uint128_t = u128;
|
|
|
|
using int8_t = s8;
|
|
using int16_t = s16;
|
|
using int32_t = s32;
|
|
using int64_t = s64;
|
|
using int128_t = s128;
|
|
|
|
using float32_t = float;
|
|
using float64_t = double;
|
|
|
|
using size_t = u64;
|
|
using ssize_t = s64;
|
|
|
|
} |