19 lines
671 B
C
19 lines
671 B
C
// Copyright 2015 The PDFium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
|
|
|
#ifndef CORE_FPDFTEXT_UNICODENORMALIZATIONDATA_H_
|
|
#define CORE_FPDFTEXT_UNICODENORMALIZATIONDATA_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
extern const uint16_t kUnicodeDataNormalization[];
|
|
extern const uint16_t kUnicodeDataNormalizationMap1[];
|
|
extern const uint16_t kUnicodeDataNormalizationMap2[];
|
|
extern const uint16_t kUnicodeDataNormalizationMap3[];
|
|
extern const uint16_t kUnicodeDataNormalizationMap4[];
|
|
|
|
#endif // CORE_FPDFTEXT_UNICODENORMALIZATIONDATA_H_
|