spiegel-keyman/common/engine/keyboardprocessor/src/utfcodec.cpp
Tim Eves 4667c5bf84 Add all the missing files that should have been in the preceding commit
Co-Authored-By: Daniel Glassey <glasseyes@users.noreply.github.com>
2018-11-30 14:46:54 +07:00

16 lines
709 B
C++

/*
Copyright: © 2011,2018 SIL International.
Description: UTF{8,16,32} codec template library, providing an iterator
interface for easy encoding or decoding of Unicode USVs into
UTF codeunits.
Create Date: 2011
Authors: Tim Eves (TSE)
History: 27 Sep 2018 - TSE - Imported from graphite2 project.
25 Oct 2018 - TSE - Relicensed under the MIT license for
inclusion in the Keyman project.
30 Nov 2018 - TSE - Added cpp file to define sz_lut and friends.
*/
#include "utfcodec.hpp"
constexpr const int8_t _utf_codec<8>::sz_lut[16];
constexpr const uint8_t _utf_codec<8>::mask_lut[5];;