🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
232 B

  1. #ifndef AL_BYTE_H
  2. #define AL_BYTE_H
  3. #include <cstddef>
  4. #include <cstdint>
  5. #include <limits>
  6. #include <type_traits>
  7. using uint = unsigned int;
  8. namespace al {
  9. using byte = unsigned char;
  10. } // namespace al
  11. #endif /* AL_BYTE_H */