blob: ee54721fd4c3c6a09701eb9a328fe1aed0d5a64d [file] [log] [blame]
Behdad Esfahbodd94647e2009-11-03 16:35:10 -05001/*
Behdad Esfahbod2409d5f2011-04-21 17:14:28 -04002 * Copyright © 2009 Red Hat, Inc.
3 * Copyright © 2009 Keith Stribley
4 * Copyright © 2011 Google, Inc.
Behdad Esfahbodd94647e2009-11-03 16:35:10 -05005 *
Behdad Esfahbodc755cb32010-04-22 00:11:43 -04006 * This is part of HarfBuzz, a text shaping library.
Behdad Esfahbodd94647e2009-11-03 16:35:10 -05007 *
8 * Permission is hereby granted, without written agreement and without
9 * license or royalty fees, to use, copy, modify, and distribute this
10 * software and its documentation for any purpose, provided that the
11 * above copyright notice and the following two paragraphs appear in
12 * all copies of this software.
13 *
14 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
15 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
16 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
17 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
18 * DAMAGE.
19 *
20 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
21 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
22 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
23 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
24 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
25 *
26 * Red Hat Author(s): Behdad Esfahbod
Behdad Esfahbod2409d5f2011-04-21 17:14:28 -040027 * Google Author(s): Behdad Esfahbod
Behdad Esfahbodd94647e2009-11-03 16:35:10 -050028 */
29
Behdad Esfahbodc57d4542011-04-20 18:50:27 -040030#include "hb-private.hh"
Behdad Esfahbodd94647e2009-11-03 16:35:10 -050031
32#include "hb-icu.h"
33
Behdad Esfahbodfb194b82011-04-20 02:00:47 -040034#include "hb-unicode-private.hh"
Behdad Esfahbodd94647e2009-11-03 16:35:10 -050035
36#include <unicode/uchar.h>
Behdad Esfahbod498e1a92011-07-20 23:19:49 -040037#include <unicode/unorm.h>
Behdad Esfahbod36a4f4a2012-01-18 22:16:49 -050038#include <unicode/ustring.h>
Kal Conley5f995db2016-02-26 00:36:17 +010039#include <unicode/utf16.h>
Behdad Esfahbod4ac4c6f2012-08-13 10:52:52 -040040#include <unicode/uversion.h>
Behdad Esfahbodacdba3f2010-07-23 15:11:18 -040041
42
Behdad Esfahbodf144a8e2011-04-20 02:54:42 -040043hb_script_t
44hb_icu_script_to_script (UScriptCode script)
Ryan Lortie2fd0c572011-04-20 00:19:20 -040045{
Behdad Esfahbod4d559cd2011-04-21 14:58:23 -040046 if (unlikely (script == USCRIPT_INVALID_CODE))
47 return HB_SCRIPT_INVALID;
48
Behdad Esfahbod4c9fe882011-08-26 09:18:53 +020049 return hb_script_from_string (uscript_getShortName (script), -1);
Ryan Lortie2fd0c572011-04-20 00:19:20 -040050}
51
Behdad Esfahbodf144a8e2011-04-20 02:54:42 -040052UScriptCode
53hb_icu_script_from_script (hb_script_t script)
Behdad Esfahbodd94647e2009-11-03 16:35:10 -050054{
Behdad Esfahbod4d559cd2011-04-21 14:58:23 -040055 if (unlikely (script == HB_SCRIPT_INVALID))
56 return USCRIPT_INVALID_CODE;
Behdad Esfahbodf144a8e2011-04-20 02:54:42 -040057
Behdad Esfahbod4d559cd2011-04-21 14:58:23 -040058 for (unsigned int i = 0; i < USCRIPT_CODE_LIMIT; i++)
59 if (unlikely (hb_icu_script_to_script ((UScriptCode) i) == script))
60 return (UScriptCode) i;
Ryan Lortie2fd0c572011-04-20 00:19:20 -040061
Behdad Esfahbodf144a8e2011-04-20 02:54:42 -040062 return USCRIPT_UNKNOWN;
63}
64
65
Behdad Esfahbod21fdcee2012-08-01 16:23:44 -040066static hb_unicode_combining_class_t
Behdad Esfahbodfca09232011-07-20 22:16:13 -040067hb_icu_unicode_combining_class (hb_unicode_funcs_t *ufuncs HB_UNUSED,
68 hb_codepoint_t unicode,
69 void *user_data HB_UNUSED)
Behdad Esfahbodf144a8e2011-04-20 02:54:42 -040070
71{
Behdad Esfahbod21fdcee2012-08-01 16:23:44 -040072 return (hb_unicode_combining_class_t) u_getCombiningClass (unicode);
Behdad Esfahbodf144a8e2011-04-20 02:54:42 -040073}
74
75static unsigned int
Behdad Esfahbodfca09232011-07-20 22:16:13 -040076hb_icu_unicode_eastasian_width (hb_unicode_funcs_t *ufuncs HB_UNUSED,
77 hb_codepoint_t unicode,
78 void *user_data HB_UNUSED)
Behdad Esfahbodf144a8e2011-04-20 02:54:42 -040079{
80 switch (u_getIntPropertyValue(unicode, UCHAR_EAST_ASIAN_WIDTH))
81 {
82 case U_EA_WIDE:
83 case U_EA_FULLWIDTH:
84 return 2;
85 case U_EA_NEUTRAL:
86 case U_EA_AMBIGUOUS:
87 case U_EA_HALFWIDTH:
88 case U_EA_NARROW:
89 return 1;
90 }
91 return 1;
92}
93
94static hb_unicode_general_category_t
Behdad Esfahbodfca09232011-07-20 22:16:13 -040095hb_icu_unicode_general_category (hb_unicode_funcs_t *ufuncs HB_UNUSED,
96 hb_codepoint_t unicode,
97 void *user_data HB_UNUSED)
Behdad Esfahbodf144a8e2011-04-20 02:54:42 -040098{
99 switch (u_getIntPropertyValue(unicode, UCHAR_GENERAL_CATEGORY))
100 {
101 case U_UNASSIGNED: return HB_UNICODE_GENERAL_CATEGORY_UNASSIGNED;
102
103 case U_UPPERCASE_LETTER: return HB_UNICODE_GENERAL_CATEGORY_UPPERCASE_LETTER;
104 case U_LOWERCASE_LETTER: return HB_UNICODE_GENERAL_CATEGORY_LOWERCASE_LETTER;
105 case U_TITLECASE_LETTER: return HB_UNICODE_GENERAL_CATEGORY_TITLECASE_LETTER;
106 case U_MODIFIER_LETTER: return HB_UNICODE_GENERAL_CATEGORY_MODIFIER_LETTER;
107 case U_OTHER_LETTER: return HB_UNICODE_GENERAL_CATEGORY_OTHER_LETTER;
108
109 case U_NON_SPACING_MARK: return HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK;
110 case U_ENCLOSING_MARK: return HB_UNICODE_GENERAL_CATEGORY_ENCLOSING_MARK;
Behdad Esfahbod5157e122011-07-21 00:12:33 -0400111 case U_COMBINING_SPACING_MARK: return HB_UNICODE_GENERAL_CATEGORY_SPACING_MARK;
Behdad Esfahbodf144a8e2011-04-20 02:54:42 -0400112
113 case U_DECIMAL_DIGIT_NUMBER: return HB_UNICODE_GENERAL_CATEGORY_DECIMAL_NUMBER;
114 case U_LETTER_NUMBER: return HB_UNICODE_GENERAL_CATEGORY_LETTER_NUMBER;
115 case U_OTHER_NUMBER: return HB_UNICODE_GENERAL_CATEGORY_OTHER_NUMBER;
116
117 case U_SPACE_SEPARATOR: return HB_UNICODE_GENERAL_CATEGORY_SPACE_SEPARATOR;
118 case U_LINE_SEPARATOR: return HB_UNICODE_GENERAL_CATEGORY_LINE_SEPARATOR;
119 case U_PARAGRAPH_SEPARATOR: return HB_UNICODE_GENERAL_CATEGORY_PARAGRAPH_SEPARATOR;
120
121 case U_CONTROL_CHAR: return HB_UNICODE_GENERAL_CATEGORY_CONTROL;
122 case U_FORMAT_CHAR: return HB_UNICODE_GENERAL_CATEGORY_FORMAT;
123 case U_PRIVATE_USE_CHAR: return HB_UNICODE_GENERAL_CATEGORY_PRIVATE_USE;
124 case U_SURROGATE: return HB_UNICODE_GENERAL_CATEGORY_SURROGATE;
125
126
127 case U_DASH_PUNCTUATION: return HB_UNICODE_GENERAL_CATEGORY_DASH_PUNCTUATION;
128 case U_START_PUNCTUATION: return HB_UNICODE_GENERAL_CATEGORY_OPEN_PUNCTUATION;
129 case U_END_PUNCTUATION: return HB_UNICODE_GENERAL_CATEGORY_CLOSE_PUNCTUATION;
130 case U_CONNECTOR_PUNCTUATION: return HB_UNICODE_GENERAL_CATEGORY_CONNECT_PUNCTUATION;
131 case U_OTHER_PUNCTUATION: return HB_UNICODE_GENERAL_CATEGORY_OTHER_PUNCTUATION;
132
133 case U_MATH_SYMBOL: return HB_UNICODE_GENERAL_CATEGORY_MATH_SYMBOL;
134 case U_CURRENCY_SYMBOL: return HB_UNICODE_GENERAL_CATEGORY_CURRENCY_SYMBOL;
135 case U_MODIFIER_SYMBOL: return HB_UNICODE_GENERAL_CATEGORY_MODIFIER_SYMBOL;
136 case U_OTHER_SYMBOL: return HB_UNICODE_GENERAL_CATEGORY_OTHER_SYMBOL;
137
138 case U_INITIAL_PUNCTUATION: return HB_UNICODE_GENERAL_CATEGORY_INITIAL_PUNCTUATION;
139 case U_FINAL_PUNCTUATION: return HB_UNICODE_GENERAL_CATEGORY_FINAL_PUNCTUATION;
140 }
141
142 return HB_UNICODE_GENERAL_CATEGORY_UNASSIGNED;
143}
144
145static hb_codepoint_t
Behdad Esfahbodfca09232011-07-20 22:16:13 -0400146hb_icu_unicode_mirroring (hb_unicode_funcs_t *ufuncs HB_UNUSED,
147 hb_codepoint_t unicode,
148 void *user_data HB_UNUSED)
Behdad Esfahbodf144a8e2011-04-20 02:54:42 -0400149{
150 return u_charMirror(unicode);
151}
152
153static hb_script_t
Behdad Esfahbodfca09232011-07-20 22:16:13 -0400154hb_icu_unicode_script (hb_unicode_funcs_t *ufuncs HB_UNUSED,
155 hb_codepoint_t unicode,
156 void *user_data HB_UNUSED)
Behdad Esfahbodf144a8e2011-04-20 02:54:42 -0400157{
158 UErrorCode status = U_ZERO_ERROR;
159 UScriptCode scriptCode = uscript_getScript(unicode, &status);
160
Behdad Esfahbod889caa52012-01-18 22:32:52 -0500161 if (unlikely (U_FAILURE (status)))
Behdad Esfahbod03034ac2011-05-02 12:37:45 -0400162 return HB_SCRIPT_UNKNOWN;
163
Behdad Esfahbodf144a8e2011-04-20 02:54:42 -0400164 return hb_icu_script_to_script (scriptCode);
Behdad Esfahbodd94647e2009-11-03 16:35:10 -0500165}
166
Behdad Esfahbodd5045a52012-08-11 21:26:25 -0400167#if U_ICU_VERSION_MAJOR_NUM >= 49
168static const UNormalizer2 *normalizer;
169#endif
170
Behdad Esfahbodfca09232011-07-20 22:16:13 -0400171static hb_bool_t
172hb_icu_unicode_compose (hb_unicode_funcs_t *ufuncs HB_UNUSED,
173 hb_codepoint_t a,
174 hb_codepoint_t b,
175 hb_codepoint_t *ab,
176 void *user_data HB_UNUSED)
177{
Behdad Esfahbodd5045a52012-08-11 21:26:25 -0400178#if U_ICU_VERSION_MAJOR_NUM >= 49
179 {
180 UChar32 ret = unorm2_composePair (normalizer, a, b);
181 if (ret < 0) return false;
182 *ab = ret;
183 return true;
184 }
185#endif
186
187 /* We don't ifdef-out the fallback code such that compiler always
188 * sees it and makes sure it's compilable. */
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400189
190 UChar utf16[4], normalized[5];
Behdad Esfahbodb1914b82012-08-07 16:57:48 -0400191 unsigned int len;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400192 hb_bool_t ret, err;
193 UErrorCode icu_err;
194
195 len = 0;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400196 err = false;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400197 U16_APPEND (utf16, len, ARRAY_LENGTH (utf16), a, err);
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400198 if (err) return false;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400199 U16_APPEND (utf16, len, ARRAY_LENGTH (utf16), b, err);
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400200 if (err) return false;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400201
202 icu_err = U_ZERO_ERROR;
203 len = unorm_normalize (utf16, len, UNORM_NFC, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
Behdad Esfahbod889caa52012-01-18 22:32:52 -0500204 if (U_FAILURE (icu_err))
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400205 return false;
Behdad Esfahbod36a4f4a2012-01-18 22:16:49 -0500206 if (u_countChar32 (normalized, len) == 1) {
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400207 U16_GET_UNSAFE (normalized, 0, *ab);
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400208 ret = true;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400209 } else {
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400210 ret = false;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400211 }
212
213 return ret;
Behdad Esfahbodfca09232011-07-20 22:16:13 -0400214}
215
216static hb_bool_t
217hb_icu_unicode_decompose (hb_unicode_funcs_t *ufuncs HB_UNUSED,
218 hb_codepoint_t ab,
219 hb_codepoint_t *a,
220 hb_codepoint_t *b,
221 void *user_data HB_UNUSED)
222{
Behdad Esfahbodd5045a52012-08-11 21:26:25 -0400223#if U_ICU_VERSION_MAJOR_NUM >= 49
224 {
225 UChar decomposed[4];
226 int len;
227 UErrorCode icu_err = U_ZERO_ERROR;
228 len = unorm2_getRawDecomposition (normalizer, ab, decomposed,
229 ARRAY_LENGTH (decomposed), &icu_err);
230 if (U_FAILURE (icu_err) || len < 0) return false;
231
232 len = u_countChar32 (decomposed, len);
233 if (len == 1) {
234 U16_GET_UNSAFE (decomposed, 0, *a);
235 *b = 0;
236 return *a != ab;
237 } else if (len == 2) {
238 len =0;
239 U16_NEXT_UNSAFE (decomposed, len, *a);
240 U16_NEXT_UNSAFE (decomposed, len, *b);
241 }
242 return true;
243 }
244#endif
245
246 /* We don't ifdef-out the fallback code such that compiler always
247 * sees it and makes sure it's compilable. */
248
Behdad Esfahbod378d2792012-07-31 21:36:16 -0400249 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1];
Behdad Esfahbodb1914b82012-08-07 16:57:48 -0400250 unsigned int len;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400251 hb_bool_t ret, err;
252 UErrorCode icu_err;
253
Behdad Esfahbod63c0ef42011-07-21 20:58:42 -0400254 /* This function is a monster! Maybe it wasn't a good idea adding a
255 * pairwise decompose API... */
256 /* Watchout for the dragons. Err, watchout for macros changing len. */
257
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400258 len = 0;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400259 err = false;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400260 U16_APPEND (utf16, len, ARRAY_LENGTH (utf16), ab, err);
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400261 if (err) return false;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400262
263 icu_err = U_ZERO_ERROR;
264 len = unorm_normalize (utf16, len, UNORM_NFD, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
Behdad Esfahbod889caa52012-01-18 22:32:52 -0500265 if (U_FAILURE (icu_err))
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400266 return false;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400267
Behdad Esfahbod36a4f4a2012-01-18 22:16:49 -0500268 len = u_countChar32 (normalized, len);
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400269
270 if (len == 1) {
271 U16_GET_UNSAFE (normalized, 0, *a);
272 *b = 0;
273 ret = *a != ab;
274 } else if (len == 2) {
Behdad Esfahbod63c0ef42011-07-21 20:58:42 -0400275 len =0;
276 U16_NEXT_UNSAFE (normalized, len, *a);
277 U16_NEXT_UNSAFE (normalized, len, *b);
278
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400279 /* Here's the ugly part: if ab decomposes to a single character and
280 * that character decomposes again, we have to detect that and undo
281 * the second part :-(. */
282 UChar recomposed[20];
283 icu_err = U_ZERO_ERROR;
Behdad Esfahbod63c0ef42011-07-21 20:58:42 -0400284 unorm_normalize (normalized, len, UNORM_NFC, 0, recomposed, ARRAY_LENGTH (recomposed), &icu_err);
Behdad Esfahbod889caa52012-01-18 22:32:52 -0500285 if (U_FAILURE (icu_err))
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400286 return false;
Behdad Esfahbod63c0ef42011-07-21 20:58:42 -0400287 hb_codepoint_t c;
288 U16_GET_UNSAFE (recomposed, 0, c);
289 if (c != *a && c != ab) {
290 *a = c;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400291 *b = 0;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400292 }
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400293 ret = true;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400294 } else {
295 /* If decomposed to more than two characters, take the last one,
296 * and recompose the rest to get the first component. */
Behdad Esfahboda18280a2012-06-07 15:44:12 -0400297 U16_PREV_UNSAFE (normalized, len, *b); /* Changes len in-place. */
298 UChar recomposed[18 * 2];
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400299 icu_err = U_ZERO_ERROR;
300 len = unorm_normalize (normalized, len, UNORM_NFC, 0, recomposed, ARRAY_LENGTH (recomposed), &icu_err);
Behdad Esfahbod889caa52012-01-18 22:32:52 -0500301 if (U_FAILURE (icu_err))
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400302 return false;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400303 /* We expect that recomposed has exactly one character now. */
Behdad Esfahboda18280a2012-06-07 15:44:12 -0400304 if (unlikely (u_countChar32 (recomposed, len) != 1))
305 return false;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400306 U16_GET_UNSAFE (recomposed, 0, *a);
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400307 ret = true;
Behdad Esfahbod498e1a92011-07-20 23:19:49 -0400308 }
309
310 return ret;
Behdad Esfahbodfca09232011-07-20 22:16:13 -0400311}
312
Behdad Esfahbod378d2792012-07-31 21:36:16 -0400313static unsigned int
314hb_icu_unicode_decompose_compatibility (hb_unicode_funcs_t *ufuncs HB_UNUSED,
315 hb_codepoint_t u,
316 hb_codepoint_t *decomposed,
317 void *user_data HB_UNUSED)
318{
319 UChar utf16[2], normalized[2 * HB_UNICODE_MAX_DECOMPOSITION_LEN + 1];
Behdad Esfahbodb1914b82012-08-07 16:57:48 -0400320 unsigned int len;
Behdad Esfahbod378d2792012-07-31 21:36:16 -0400321 int32_t utf32_len;
322 hb_bool_t err;
323 UErrorCode icu_err;
324
325 /* Copy @u into a UTF-16 array to be passed to ICU. */
326 len = 0;
Behdad Esfahbod90364842014-03-24 14:26:36 -0700327 err = false;
Behdad Esfahbod378d2792012-07-31 21:36:16 -0400328 U16_APPEND (utf16, len, ARRAY_LENGTH (utf16), u, err);
329 if (err)
330 return 0;
331
332 /* Normalise the codepoint using NFKD mode. */
333 icu_err = U_ZERO_ERROR;
334 len = unorm_normalize (utf16, len, UNORM_NFKD, 0, normalized, ARRAY_LENGTH (normalized), &icu_err);
335 if (icu_err)
336 return 0;
337
338 /* Convert the decomposed form from UTF-16 to UTF-32. */
339 icu_err = U_ZERO_ERROR;
340 u_strToUTF32 ((UChar32*) decomposed, HB_UNICODE_MAX_DECOMPOSITION_LEN, &utf32_len, normalized, len, &icu_err);
341 if (icu_err)
342 return 0;
343
344 return utf32_len;
345}
346
Behdad Esfahbodbe4560a2012-06-05 18:14:03 -0400347
Behdad Esfahbodd94647e2009-11-03 16:35:10 -0500348hb_unicode_funcs_t *
349hb_icu_get_unicode_funcs (void)
350{
Behdad Esfahbodd5045a52012-08-11 21:26:25 -0400351 static const hb_unicode_funcs_t _hb_icu_unicode_funcs = {
352 HB_OBJECT_HEADER_STATIC,
353
354 NULL, /* parent */
355 true, /* immutable */
356 {
357#define HB_UNICODE_FUNC_IMPLEMENT(name) hb_icu_unicode_##name,
358 HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS
359#undef HB_UNICODE_FUNC_IMPLEMENT
360 }
361 };
362
363#if U_ICU_VERSION_MAJOR_NUM >= 49
364 if (!hb_atomic_ptr_get (&normalizer)) {
365 UErrorCode icu_err = U_ZERO_ERROR;
366 /* We ignore failure in getNFCInstace(). */
Chris Petersond1897a92015-01-03 19:46:19 -0800367 (void) hb_atomic_ptr_cmpexch (&normalizer, NULL, unorm2_getNFCInstance (&icu_err));
Behdad Esfahbodd5045a52012-08-11 21:26:25 -0400368 }
369#endif
Behdad Esfahbodf06ab8a2012-06-05 12:31:51 -0400370 return const_cast<hb_unicode_funcs_t *> (&_hb_icu_unicode_funcs);
Behdad Esfahbodd94647e2009-11-03 16:35:10 -0500371}