albyte.h 232 B

1234567891011121314151617
  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 */