blob: 079fa437de5d88642b040e4438546379633cdc3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef UTF_ERROR_HH
#define UTF_ERROR_HH
#include <cstdint>
namespace utf {
constexpr uint32_t NEED_MORE = 0xfffffffe;
constexpr uint32_t INVALID = 0xffffffff;
} // namespace utf
#endif // UTF_ERROR_HH
|