#ifndef U_HH
#define U_HH
#include <cstdint>
namespace u {
enum class ReadError : uint8_t {
Invalid, // Invalid sequence
End, // At end (it == end)
Incomplete, // Too few bytes
};
enum class ReadErrorReplace : uint8_t {
End, // At end (it == end)
Incomplete, // Too few bytes
};
} // namespace u
#endif // U_HH