diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-05 22:12:56 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-05 22:12:56 +0100 |
commit | 159f38d4e12bbcc48799431f4b69321a445be8ca (patch) | |
tree | 4b872a7f7e3f25c4f6eb7d5d4313b49304f756b8 /asl/integers.hpp | |
parent | e65fe1b93684f9517599be695eb40aa4537fc6c7 (diff) |
Add CityHash
Diffstat (limited to 'asl/integers.hpp')
-rw-r--r-- | asl/integers.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/asl/integers.hpp b/asl/integers.hpp index 5f6ad76..b9ca9f8 100644 --- a/asl/integers.hpp +++ b/asl/integers.hpp @@ -20,6 +20,12 @@ using uint32_t = unsigned int; using uint64_t = unsigned long;
#endif
+struct uint128_t
+{
+ uint64_t high;
+ uint64_t low;
+};
+
using size_t = uint64_t;
using isize_t = int64_t;
|