/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * Copyright 2017 Danny Robson */ #ifndef CRUFT_UTIL_UTF8_HPP #define CRUFT_UTIL_UTF8_HPP #include "./view.hpp" #include #include #include namespace cruft::utf8 { /////////////////////////////////////////////////////////////////////////// using codepoint_t = uint32_t; /////////////////////////////////////////////////////////////////////////// std::vector decode (cruft::view); //------------------------------------------------------------------------- inline auto decode (cruft::view data) { return decode ({ reinterpret_cast (data.cbegin ()), reinterpret_cast (data.cend ()) }); } inline auto decode (cruft::view data) { return decode ({ reinterpret_cast (data.cbegin ()), reinterpret_cast (data.cend ()) }); } /////////////////////////////////////////////////////////////////////////// std::vector encode (cruft::view); /////////////////////////////////////////////////////////////////////////// struct error : public std::exception {}; struct malformed_error : public error { }; struct illegal_codepoint : public malformed_error {}; struct overlong_error : public error { }; } #endif