1 // Copyright 2015 The PDFium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #ifndef CORE_FPDFTEXT_UNICODENORMALIZATIONDATA_H_ 8 #define CORE_FPDFTEXT_UNICODENORMALIZATIONDATA_H_ 9 10 #include <stdint.h> 11 12 #include <array> 13 14 extern const std::array<uint16_t, 65536> kUnicodeDataNormalization; 15 extern const std::array<uint16_t, 5376> kUnicodeDataNormalizationMap1; 16 extern const std::array<uint16_t, 1724> kUnicodeDataNormalizationMap2; 17 extern const std::array<uint16_t, 1164> kUnicodeDataNormalizationMap3; 18 extern const std::array<uint16_t, 488> kUnicodeDataNormalizationMap4; 19 20 #endif // CORE_FPDFTEXT_UNICODENORMALIZATIONDATA_H_ 21