blob: c04ee15a09b1d7143b65aeb84ed03f9674014980 [file] [log] [blame]
Behdad Esfahbod5c441882009-08-10 20:05:16 -04001/*
Behdad Esfahbod2409d5f2011-04-21 17:14:28 -04002 * Copyright © 2009 Red Hat, Inc.
Behdad Esfahbod6af9cff2011-04-29 12:00:38 -04003 * Copyright © 2011 Codethink Limited
Behdad Esfahbod378d2792012-07-31 21:36:16 -04004 * Copyright © 2011,2012 Google, Inc.
Behdad Esfahbod5c441882009-08-10 20:05:16 -04005 *
Behdad Esfahbodc755cb32010-04-22 00:11:43 -04006 * This is part of HarfBuzz, a text shaping library.
Behdad Esfahbod5c441882009-08-10 20:05:16 -04007 *
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
Ryan Lortie2fd0c572011-04-20 00:19:20 -040027 * Codethink Author(s): Ryan Lortie
Behdad Esfahbod2409d5f2011-04-21 17:14:28 -040028 * Google Author(s): Behdad Esfahbod
Behdad Esfahbod5c441882009-08-10 20:05:16 -040029 */
30
Khaled Hosny7b9e23f2021-02-10 23:37:43 +020031#if !defined(HB_H_IN) && !defined(HB_NO_SINGLE_HEADER_ERROR)
Behdad Esfahbodd1c9eb42012-04-12 13:17:44 -040032#error "Include <hb.h> instead."
33#endif
34
Behdad Esfahbod5c441882009-08-10 20:05:16 -040035#ifndef HB_UNICODE_H
36#define HB_UNICODE_H
37
38#include "hb-common.h"
39
40HB_BEGIN_DECLS
41
Behdad Esfahbodacdba3f2010-07-23 15:11:18 -040042
Behdad Esfahbod54d332d2018-09-10 11:37:24 +020043/**
Khaled Hosny3f7ffd12020-12-30 23:46:13 +020044 * HB_UNICODE_MAX:
45 *
46 * Maximum valid Unicode code point.
Behdad Esfahbod54d332d2018-09-10 11:37:24 +020047 *
48 * Since: 1.9.0
Behdad Esfahbod80616642018-10-11 14:16:55 -040049 **/
Behdad Esfahbod82b12bc2018-08-25 22:07:17 -070050#define HB_UNICODE_MAX 0x10FFFFu
51
52
Nathan Willis5b43eb52019-04-22 19:16:48 +010053/**
54 * hb_unicode_general_category_t:
Khaled Hosny0fd61442020-12-24 00:10:27 +020055 * @HB_UNICODE_GENERAL_CATEGORY_CONTROL: [Cc]
56 * @HB_UNICODE_GENERAL_CATEGORY_FORMAT: [Cf]
57 * @HB_UNICODE_GENERAL_CATEGORY_UNASSIGNED: [Cn]
58 * @HB_UNICODE_GENERAL_CATEGORY_PRIVATE_USE: [Co]
59 * @HB_UNICODE_GENERAL_CATEGORY_SURROGATE: [Cs]
60 * @HB_UNICODE_GENERAL_CATEGORY_LOWERCASE_LETTER: [Ll]
61 * @HB_UNICODE_GENERAL_CATEGORY_MODIFIER_LETTER: [Lm]
62 * @HB_UNICODE_GENERAL_CATEGORY_OTHER_LETTER: [Lo]
63 * @HB_UNICODE_GENERAL_CATEGORY_TITLECASE_LETTER: [Lt]
64 * @HB_UNICODE_GENERAL_CATEGORY_UPPERCASE_LETTER: [Lu]
65 * @HB_UNICODE_GENERAL_CATEGORY_SPACING_MARK: [Mc]
66 * @HB_UNICODE_GENERAL_CATEGORY_ENCLOSING_MARK: [Me]
67 * @HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK: [Mn]
68 * @HB_UNICODE_GENERAL_CATEGORY_DECIMAL_NUMBER: [Nd]
69 * @HB_UNICODE_GENERAL_CATEGORY_LETTER_NUMBER: [Nl]
70 * @HB_UNICODE_GENERAL_CATEGORY_OTHER_NUMBER: [No]
71 * @HB_UNICODE_GENERAL_CATEGORY_CONNECT_PUNCTUATION: [Pc]
72 * @HB_UNICODE_GENERAL_CATEGORY_DASH_PUNCTUATION: [Pd]
73 * @HB_UNICODE_GENERAL_CATEGORY_CLOSE_PUNCTUATION: [Pe]
74 * @HB_UNICODE_GENERAL_CATEGORY_FINAL_PUNCTUATION: [Pf]
75 * @HB_UNICODE_GENERAL_CATEGORY_INITIAL_PUNCTUATION: [Pi]
76 * @HB_UNICODE_GENERAL_CATEGORY_OTHER_PUNCTUATION: [Po]
77 * @HB_UNICODE_GENERAL_CATEGORY_OPEN_PUNCTUATION: [Ps]
78 * @HB_UNICODE_GENERAL_CATEGORY_CURRENCY_SYMBOL: [Sc]
79 * @HB_UNICODE_GENERAL_CATEGORY_MODIFIER_SYMBOL: [Sk]
80 * @HB_UNICODE_GENERAL_CATEGORY_MATH_SYMBOL: [Sm]
81 * @HB_UNICODE_GENERAL_CATEGORY_OTHER_SYMBOL: [So]
82 * @HB_UNICODE_GENERAL_CATEGORY_LINE_SEPARATOR: [Zl]
83 * @HB_UNICODE_GENERAL_CATEGORY_PARAGRAPH_SEPARATOR: [Zp]
84 * @HB_UNICODE_GENERAL_CATEGORY_SPACE_SEPARATOR: [Zs]
Nathan Willis5b43eb52019-04-22 19:16:48 +010085 *
86 * Data type for the "General_Category" (gc) property from
87 * the Unicode Character Database.
88 **/
Behdad Esfahbod21fdcee2012-08-01 16:23:44 -040089
90/* Unicode Character Database property: General_Category (gc) */
91typedef enum
92{
93 HB_UNICODE_GENERAL_CATEGORY_CONTROL, /* Cc */
94 HB_UNICODE_GENERAL_CATEGORY_FORMAT, /* Cf */
95 HB_UNICODE_GENERAL_CATEGORY_UNASSIGNED, /* Cn */
96 HB_UNICODE_GENERAL_CATEGORY_PRIVATE_USE, /* Co */
97 HB_UNICODE_GENERAL_CATEGORY_SURROGATE, /* Cs */
98 HB_UNICODE_GENERAL_CATEGORY_LOWERCASE_LETTER, /* Ll */
99 HB_UNICODE_GENERAL_CATEGORY_MODIFIER_LETTER, /* Lm */
100 HB_UNICODE_GENERAL_CATEGORY_OTHER_LETTER, /* Lo */
101 HB_UNICODE_GENERAL_CATEGORY_TITLECASE_LETTER, /* Lt */
102 HB_UNICODE_GENERAL_CATEGORY_UPPERCASE_LETTER, /* Lu */
103 HB_UNICODE_GENERAL_CATEGORY_SPACING_MARK, /* Mc */
104 HB_UNICODE_GENERAL_CATEGORY_ENCLOSING_MARK, /* Me */
105 HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK, /* Mn */
106 HB_UNICODE_GENERAL_CATEGORY_DECIMAL_NUMBER, /* Nd */
107 HB_UNICODE_GENERAL_CATEGORY_LETTER_NUMBER, /* Nl */
108 HB_UNICODE_GENERAL_CATEGORY_OTHER_NUMBER, /* No */
109 HB_UNICODE_GENERAL_CATEGORY_CONNECT_PUNCTUATION, /* Pc */
110 HB_UNICODE_GENERAL_CATEGORY_DASH_PUNCTUATION, /* Pd */
111 HB_UNICODE_GENERAL_CATEGORY_CLOSE_PUNCTUATION, /* Pe */
112 HB_UNICODE_GENERAL_CATEGORY_FINAL_PUNCTUATION, /* Pf */
113 HB_UNICODE_GENERAL_CATEGORY_INITIAL_PUNCTUATION, /* Pi */
114 HB_UNICODE_GENERAL_CATEGORY_OTHER_PUNCTUATION, /* Po */
115 HB_UNICODE_GENERAL_CATEGORY_OPEN_PUNCTUATION, /* Ps */
116 HB_UNICODE_GENERAL_CATEGORY_CURRENCY_SYMBOL, /* Sc */
117 HB_UNICODE_GENERAL_CATEGORY_MODIFIER_SYMBOL, /* Sk */
118 HB_UNICODE_GENERAL_CATEGORY_MATH_SYMBOL, /* Sm */
119 HB_UNICODE_GENERAL_CATEGORY_OTHER_SYMBOL, /* So */
120 HB_UNICODE_GENERAL_CATEGORY_LINE_SEPARATOR, /* Zl */
121 HB_UNICODE_GENERAL_CATEGORY_PARAGRAPH_SEPARATOR, /* Zp */
122 HB_UNICODE_GENERAL_CATEGORY_SPACE_SEPARATOR /* Zs */
123} hb_unicode_general_category_t;
124
Nathan Willis5b43eb52019-04-22 19:16:48 +0100125/**
126 * hb_unicode_combining_class_t:
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200127 * @HB_UNICODE_COMBINING_CLASS_NOT_REORDERED: Spacing and enclosing marks; also many vowel and consonant signs, even if nonspacing
128 * @HB_UNICODE_COMBINING_CLASS_OVERLAY: Marks which overlay a base letter or symbol
129 * @HB_UNICODE_COMBINING_CLASS_NUKTA: Diacritic nukta marks in Brahmi-derived scripts
130 * @HB_UNICODE_COMBINING_CLASS_KANA_VOICING: Hiragana/Katakana voicing marks
131 * @HB_UNICODE_COMBINING_CLASS_VIRAMA: Viramas
132 * @HB_UNICODE_COMBINING_CLASS_CCC10: [Hebrew]
Khaled Hosny0fd61442020-12-24 00:10:27 +0200133 * @HB_UNICODE_COMBINING_CLASS_CCC11: [Hebrew]
134 * @HB_UNICODE_COMBINING_CLASS_CCC12: [Hebrew]
135 * @HB_UNICODE_COMBINING_CLASS_CCC13: [Hebrew]
136 * @HB_UNICODE_COMBINING_CLASS_CCC14: [Hebrew]
137 * @HB_UNICODE_COMBINING_CLASS_CCC15: [Hebrew]
138 * @HB_UNICODE_COMBINING_CLASS_CCC16: [Hebrew]
139 * @HB_UNICODE_COMBINING_CLASS_CCC17: [Hebrew]
140 * @HB_UNICODE_COMBINING_CLASS_CCC18: [Hebrew]
141 * @HB_UNICODE_COMBINING_CLASS_CCC19: [Hebrew]
142 * @HB_UNICODE_COMBINING_CLASS_CCC20: [Hebrew]
143 * @HB_UNICODE_COMBINING_CLASS_CCC21: [Hebrew]
144 * @HB_UNICODE_COMBINING_CLASS_CCC22: [Hebrew]
145 * @HB_UNICODE_COMBINING_CLASS_CCC23: [Hebrew]
146 * @HB_UNICODE_COMBINING_CLASS_CCC24: [Hebrew]
147 * @HB_UNICODE_COMBINING_CLASS_CCC25: [Hebrew]
148 * @HB_UNICODE_COMBINING_CLASS_CCC26: [Hebrew]
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200149 * @HB_UNICODE_COMBINING_CLASS_CCC27: [Arabic]
Khaled Hosny0fd61442020-12-24 00:10:27 +0200150 * @HB_UNICODE_COMBINING_CLASS_CCC28: [Arabic]
151 * @HB_UNICODE_COMBINING_CLASS_CCC29: [Arabic]
152 * @HB_UNICODE_COMBINING_CLASS_CCC30: [Arabic]
153 * @HB_UNICODE_COMBINING_CLASS_CCC31: [Arabic]
154 * @HB_UNICODE_COMBINING_CLASS_CCC32: [Arabic]
155 * @HB_UNICODE_COMBINING_CLASS_CCC33: [Arabic]
156 * @HB_UNICODE_COMBINING_CLASS_CCC34: [Arabic]
157 * @HB_UNICODE_COMBINING_CLASS_CCC35: [Arabic]
158 * @HB_UNICODE_COMBINING_CLASS_CCC36: [Syriac]
159 * @HB_UNICODE_COMBINING_CLASS_CCC84: [Telugu]
160 * @HB_UNICODE_COMBINING_CLASS_CCC91: [Telugu]
161 * @HB_UNICODE_COMBINING_CLASS_CCC103: [Thai]
162 * @HB_UNICODE_COMBINING_CLASS_CCC107: [Thai]
163 * @HB_UNICODE_COMBINING_CLASS_CCC118: [Lao]
164 * @HB_UNICODE_COMBINING_CLASS_CCC122: [Lao]
165 * @HB_UNICODE_COMBINING_CLASS_CCC129: [Tibetan]
166 * @HB_UNICODE_COMBINING_CLASS_CCC130: [Tibetan]
167 * @HB_UNICODE_COMBINING_CLASS_CCC133: [Tibetan]
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200168 * @HB_UNICODE_COMBINING_CLASS_ATTACHED_BELOW_LEFT: Marks attached at the bottom left
169 * @HB_UNICODE_COMBINING_CLASS_ATTACHED_BELOW: Marks attached directly below
170 * @HB_UNICODE_COMBINING_CLASS_ATTACHED_ABOVE: Marks attached directly above
171 * @HB_UNICODE_COMBINING_CLASS_ATTACHED_ABOVE_RIGHT: Marks attached at the top right
172 * @HB_UNICODE_COMBINING_CLASS_BELOW_LEFT: Distinct marks at the bottom left
173 * @HB_UNICODE_COMBINING_CLASS_BELOW: Distinct marks directly below
174 * @HB_UNICODE_COMBINING_CLASS_BELOW_RIGHT: Distinct marks at the bottom right
175 * @HB_UNICODE_COMBINING_CLASS_LEFT: Distinct marks to the left
176 * @HB_UNICODE_COMBINING_CLASS_RIGHT: Distinct marks to the right
177 * @HB_UNICODE_COMBINING_CLASS_ABOVE_LEFT: Distinct marks at the top left
178 * @HB_UNICODE_COMBINING_CLASS_ABOVE: Distinct marks directly above
179 * @HB_UNICODE_COMBINING_CLASS_ABOVE_RIGHT: Distinct marks at the top right
180 * @HB_UNICODE_COMBINING_CLASS_DOUBLE_BELOW: Distinct marks subtending two bases
181 * @HB_UNICODE_COMBINING_CLASS_DOUBLE_ABOVE: Distinct marks extending above two bases
182 * @HB_UNICODE_COMBINING_CLASS_IOTA_SUBSCRIPT: Greek iota subscript only
183 * @HB_UNICODE_COMBINING_CLASS_INVALID: Invalid combining class
Nathan Willis5b43eb52019-04-22 19:16:48 +0100184 *
185 * Data type for the Canonical_Combining_Class (ccc) property
186 * from the Unicode Character Database.
187 *
188 * <note>Note: newer versions of Unicode may add new values.
189 * Client programs should be ready to handle any value in the 0..254 range
190 * being returned from hb_unicode_combining_class().</note>
191 *
192 **/
Behdad Esfahbod21fdcee2012-08-01 16:23:44 -0400193typedef enum
194{
195 HB_UNICODE_COMBINING_CLASS_NOT_REORDERED = 0,
196 HB_UNICODE_COMBINING_CLASS_OVERLAY = 1,
197 HB_UNICODE_COMBINING_CLASS_NUKTA = 7,
198 HB_UNICODE_COMBINING_CLASS_KANA_VOICING = 8,
199 HB_UNICODE_COMBINING_CLASS_VIRAMA = 9,
200
201 /* Hebrew */
202 HB_UNICODE_COMBINING_CLASS_CCC10 = 10,
203 HB_UNICODE_COMBINING_CLASS_CCC11 = 11,
204 HB_UNICODE_COMBINING_CLASS_CCC12 = 12,
205 HB_UNICODE_COMBINING_CLASS_CCC13 = 13,
206 HB_UNICODE_COMBINING_CLASS_CCC14 = 14,
207 HB_UNICODE_COMBINING_CLASS_CCC15 = 15,
208 HB_UNICODE_COMBINING_CLASS_CCC16 = 16,
209 HB_UNICODE_COMBINING_CLASS_CCC17 = 17,
210 HB_UNICODE_COMBINING_CLASS_CCC18 = 18,
211 HB_UNICODE_COMBINING_CLASS_CCC19 = 19,
212 HB_UNICODE_COMBINING_CLASS_CCC20 = 20,
213 HB_UNICODE_COMBINING_CLASS_CCC21 = 21,
214 HB_UNICODE_COMBINING_CLASS_CCC22 = 22,
215 HB_UNICODE_COMBINING_CLASS_CCC23 = 23,
216 HB_UNICODE_COMBINING_CLASS_CCC24 = 24,
217 HB_UNICODE_COMBINING_CLASS_CCC25 = 25,
218 HB_UNICODE_COMBINING_CLASS_CCC26 = 26,
219
220 /* Arabic */
221 HB_UNICODE_COMBINING_CLASS_CCC27 = 27,
222 HB_UNICODE_COMBINING_CLASS_CCC28 = 28,
223 HB_UNICODE_COMBINING_CLASS_CCC29 = 29,
224 HB_UNICODE_COMBINING_CLASS_CCC30 = 30,
225 HB_UNICODE_COMBINING_CLASS_CCC31 = 31,
226 HB_UNICODE_COMBINING_CLASS_CCC32 = 32,
227 HB_UNICODE_COMBINING_CLASS_CCC33 = 33,
228 HB_UNICODE_COMBINING_CLASS_CCC34 = 34,
229 HB_UNICODE_COMBINING_CLASS_CCC35 = 35,
230
231 /* Syriac */
232 HB_UNICODE_COMBINING_CLASS_CCC36 = 36,
233
234 /* Telugu */
235 HB_UNICODE_COMBINING_CLASS_CCC84 = 84,
236 HB_UNICODE_COMBINING_CLASS_CCC91 = 91,
237
238 /* Thai */
239 HB_UNICODE_COMBINING_CLASS_CCC103 = 103,
240 HB_UNICODE_COMBINING_CLASS_CCC107 = 107,
241
242 /* Lao */
243 HB_UNICODE_COMBINING_CLASS_CCC118 = 118,
244 HB_UNICODE_COMBINING_CLASS_CCC122 = 122,
245
246 /* Tibetan */
247 HB_UNICODE_COMBINING_CLASS_CCC129 = 129,
248 HB_UNICODE_COMBINING_CLASS_CCC130 = 130,
249 HB_UNICODE_COMBINING_CLASS_CCC133 = 132,
250
251
252 HB_UNICODE_COMBINING_CLASS_ATTACHED_BELOW_LEFT = 200,
253 HB_UNICODE_COMBINING_CLASS_ATTACHED_BELOW = 202,
254 HB_UNICODE_COMBINING_CLASS_ATTACHED_ABOVE = 214,
255 HB_UNICODE_COMBINING_CLASS_ATTACHED_ABOVE_RIGHT = 216,
256 HB_UNICODE_COMBINING_CLASS_BELOW_LEFT = 218,
257 HB_UNICODE_COMBINING_CLASS_BELOW = 220,
258 HB_UNICODE_COMBINING_CLASS_BELOW_RIGHT = 222,
259 HB_UNICODE_COMBINING_CLASS_LEFT = 224,
260 HB_UNICODE_COMBINING_CLASS_RIGHT = 226,
261 HB_UNICODE_COMBINING_CLASS_ABOVE_LEFT = 228,
262 HB_UNICODE_COMBINING_CLASS_ABOVE = 230,
263 HB_UNICODE_COMBINING_CLASS_ABOVE_RIGHT = 232,
264 HB_UNICODE_COMBINING_CLASS_DOUBLE_BELOW = 233,
265 HB_UNICODE_COMBINING_CLASS_DOUBLE_ABOVE = 234,
266
267 HB_UNICODE_COMBINING_CLASS_IOTA_SUBSCRIPT = 240,
268
269 HB_UNICODE_COMBINING_CLASS_INVALID = 255
270} hb_unicode_combining_class_t;
271
272
Behdad Esfahbod5c441882009-08-10 20:05:16 -0400273/*
274 * hb_unicode_funcs_t
275 */
276
Nathan Willis5b43eb52019-04-22 19:16:48 +0100277/**
278 * hb_unicode_funcs_t:
279 *
280 * Data type containing a set of virtual methods used for
281 * accessing various Unicode character properties.
282 *
283 * HarfBuzz provides a default function for each of the
284 * methods in #hb_unicode_funcs_t. Client programs can implement
285 * their own replacements for the individual Unicode functions, as
286 * needed, and replace the default by calling the setter for a
287 * method.
288 **/
Behdad Esfahbod1bc1cb32012-06-16 15:21:55 -0400289typedef struct hb_unicode_funcs_t hb_unicode_funcs_t;
Behdad Esfahbod5c441882009-08-10 20:05:16 -0400290
Behdad Esfahbodd4bee9f2011-04-27 09:24:37 -0400291
292/*
293 * just give me the best implementation you've got there.
294 */
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800295HB_EXTERN hb_unicode_funcs_t *
Behdad Esfahbodd4bee9f2011-04-27 09:24:37 -0400296hb_unicode_funcs_get_default (void);
297
298
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800299HB_EXTERN hb_unicode_funcs_t *
Behdad Esfahboddefc45b2011-05-10 20:02:49 -0400300hb_unicode_funcs_create (hb_unicode_funcs_t *parent);
Behdad Esfahbod5c441882009-08-10 20:05:16 -0400301
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800302HB_EXTERN hb_unicode_funcs_t *
Behdad Esfahbod80a68332011-05-11 18:14:44 -0400303hb_unicode_funcs_get_empty (void);
304
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800305HB_EXTERN hb_unicode_funcs_t *
Behdad Esfahbod5c441882009-08-10 20:05:16 -0400306hb_unicode_funcs_reference (hb_unicode_funcs_t *ufuncs);
307
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800308HB_EXTERN void
Behdad Esfahbod5c441882009-08-10 20:05:16 -0400309hb_unicode_funcs_destroy (hb_unicode_funcs_t *ufuncs);
310
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800311HB_EXTERN hb_bool_t
Behdad Esfahbod5fa849b2011-04-27 21:46:01 -0400312hb_unicode_funcs_set_user_data (hb_unicode_funcs_t *ufuncs,
Ebrahim Byagowi05584132019-10-01 13:49:55 +0330313 hb_user_data_key_t *key,
314 void * data,
315 hb_destroy_func_t destroy,
Behdad Esfahbod33ccc772011-08-09 00:43:24 +0200316 hb_bool_t replace);
Behdad Esfahbod5fa849b2011-04-27 21:46:01 -0400317
318
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800319HB_EXTERN void *
Behdad Esfahbod5fa849b2011-04-27 21:46:01 -0400320hb_unicode_funcs_get_user_data (hb_unicode_funcs_t *ufuncs,
Ebrahim Byagowi05584132019-10-01 13:49:55 +0330321 hb_user_data_key_t *key);
Behdad Esfahbod5fa849b2011-04-27 21:46:01 -0400322
323
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800324HB_EXTERN void
Behdad Esfahbodeb27ec02009-08-10 23:25:28 -0400325hb_unicode_funcs_make_immutable (hb_unicode_funcs_t *ufuncs);
Behdad Esfahbod5c441882009-08-10 20:05:16 -0400326
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800327HB_EXTERN hb_bool_t
Behdad Esfahbod645f6f22010-10-04 17:01:01 -0400328hb_unicode_funcs_is_immutable (hb_unicode_funcs_t *ufuncs);
Behdad Esfahbod5c441882009-08-10 20:05:16 -0400329
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800330HB_EXTERN hb_unicode_funcs_t *
Behdad Esfahbodecfb7732011-04-20 01:34:51 -0400331hb_unicode_funcs_get_parent (hb_unicode_funcs_t *ufuncs);
332
333
Behdad Esfahbod19c0eab2010-10-04 16:45:21 -0400334/*
335 * funcs
336 */
337
Behdad Esfahbod19c0eab2010-10-04 16:45:21 -0400338/* typedefs */
Behdad Esfahbod5c441882009-08-10 20:05:16 -0400339
Nathan Willis5b43eb52019-04-22 19:16:48 +0100340/**
341 * hb_unicode_combining_class_func_t:
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200342 * @ufuncs: A Unicode-functions structure
343 * @unicode: The code point to query
344 * @user_data: User data pointer passed by the caller
Nathan Willis5b43eb52019-04-22 19:16:48 +0100345 *
346 * A virtual method for the #hb_unicode_funcs_t structure.
347 *
348 * This method should retrieve the Canonical Combining Class (ccc)
349 * property for a specified Unicode code point.
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200350 *
351 * Return value: The #hb_unicode_combining_class_t of @unicode
Nathan Willis5b43eb52019-04-22 19:16:48 +0100352 *
353 **/
Behdad Esfahbod21fdcee2012-08-01 16:23:44 -0400354typedef hb_unicode_combining_class_t (*hb_unicode_combining_class_func_t) (hb_unicode_funcs_t *ufuncs,
Behdad Esfahbod446df9c2011-05-10 20:14:44 -0400355 hb_codepoint_t unicode,
356 void *user_data);
Nathan Willis5b43eb52019-04-22 19:16:48 +0100357
358/**
359 * hb_unicode_general_category_func_t:
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200360 * @ufuncs: A Unicode-functions structure
361 * @unicode: The code point to query
362 * @user_data: User data pointer passed by the caller
Nathan Willis5b43eb52019-04-22 19:16:48 +0100363 *
364 * A virtual method for the #hb_unicode_funcs_t structure.
365 *
366 * This method should retrieve the General Category property for
367 * a specified Unicode code point.
368 *
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200369 * Return value: The #hb_unicode_general_category_t of @unicode
370 *
Nathan Willis5b43eb52019-04-22 19:16:48 +0100371 **/
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400372typedef hb_unicode_general_category_t (*hb_unicode_general_category_func_t) (hb_unicode_funcs_t *ufuncs,
Behdad Esfahbod446df9c2011-05-10 20:14:44 -0400373 hb_codepoint_t unicode,
374 void *user_data);
Nathan Willis5b43eb52019-04-22 19:16:48 +0100375
376/**
377 * hb_unicode_mirroring_func_t:
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200378 * @ufuncs: A Unicode-functions structure
379 * @unicode: The code point to query
380 * @user_data: User data pointer passed by the caller
Nathan Willis5b43eb52019-04-22 19:16:48 +0100381 *
382 * A virtual method for the #hb_unicode_funcs_t structure.
383 *
384 * This method should retrieve the Bi-Directional Mirroring Glyph
385 * code point for a specified Unicode code point.
386 *
387 * <note>Note: If a code point does not have a specified
388 * Bi-Directional Mirroring Glyph defined, the method should
389 * return the original code point.</note>
390 *
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200391 * Return value: The #hb_codepoint_t of the Mirroring Glyph for @unicode
392 *
Nathan Willis5b43eb52019-04-22 19:16:48 +0100393 **/
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400394typedef hb_codepoint_t (*hb_unicode_mirroring_func_t) (hb_unicode_funcs_t *ufuncs,
Behdad Esfahbod446df9c2011-05-10 20:14:44 -0400395 hb_codepoint_t unicode,
396 void *user_data);
Nathan Willis5b43eb52019-04-22 19:16:48 +0100397
398/**
399 * hb_unicode_script_func_t:
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200400 * @ufuncs: A Unicode-functions structure
401 * @unicode: The code point to query
402 * @user_data: User data pointer passed by the caller
Nathan Willis5b43eb52019-04-22 19:16:48 +0100403 *
404 * A virtual method for the #hb_unicode_funcs_t structure.
405 *
406 * This method should retrieve the Script property for a
407 * specified Unicode code point.
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200408 *
409 * Return value: The #hb_script_t of @unicode
Nathan Willis5b43eb52019-04-22 19:16:48 +0100410 *
411 **/
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400412typedef hb_script_t (*hb_unicode_script_func_t) (hb_unicode_funcs_t *ufuncs,
Behdad Esfahbod446df9c2011-05-10 20:14:44 -0400413 hb_codepoint_t unicode,
414 void *user_data);
Behdad Esfahbod5c441882009-08-10 20:05:16 -0400415
Nathan Willis5b43eb52019-04-22 19:16:48 +0100416/**
417 * hb_unicode_compose_func_t:
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200418 * @ufuncs: A Unicode-functions structure
419 * @a: The first code point to compose
420 * @b: The second code point to compose
421 * @ab: (out): The composed code point
422 * @user_data: user data pointer passed by the caller
Nathan Willis5b43eb52019-04-22 19:16:48 +0100423 *
424 * A virtual method for the #hb_unicode_funcs_t structure.
425 *
426 * This method should compose a sequence of two input Unicode code
427 * points by canonical equivalence, returning the composed code
428 * point in a #hb_codepoint_t output parameter (if successful).
429 * The method must return an #hb_bool_t indicating the success
430 * of the composition.
431 *
Khaled Hosnya8e72ee2020-12-30 23:08:40 +0200432 * Return value: %true is @a,@b composed, %false otherwise
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200433 *
Nathan Willis5b43eb52019-04-22 19:16:48 +0100434 **/
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400435typedef hb_bool_t (*hb_unicode_compose_func_t) (hb_unicode_funcs_t *ufuncs,
436 hb_codepoint_t a,
437 hb_codepoint_t b,
438 hb_codepoint_t *ab,
439 void *user_data);
Nathan Willis5b43eb52019-04-22 19:16:48 +0100440
441/**
442 * hb_unicode_decompose_func_t:
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200443 * @ufuncs: A Unicode-functions structure
444 * @ab: The code point to decompose
445 * @a: (out): The first decomposed code point
446 * @b: (out): The second decomposed code point
447 * @user_data: user data pointer passed by the caller
Nathan Willis5b43eb52019-04-22 19:16:48 +0100448 *
449 * A virtual method for the #hb_unicode_funcs_t structure.
450 *
451 * This method should decompose an input Unicode code point,
452 * returning the two decomposed code points in #hb_codepoint_t
453 * output parameters (if successful). The method must return an
454 * #hb_bool_t indicating the success of the composition.
455 *
Khaled Hosnya8e72ee2020-12-30 23:08:40 +0200456 * Return value: %true if @ab decomposed, %false otherwise
Khaled Hosnyfdf3e442020-12-24 00:41:45 +0200457 *
Nathan Willis5b43eb52019-04-22 19:16:48 +0100458 **/
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400459typedef hb_bool_t (*hb_unicode_decompose_func_t) (hb_unicode_funcs_t *ufuncs,
460 hb_codepoint_t ab,
461 hb_codepoint_t *a,
462 hb_codepoint_t *b,
463 void *user_data);
464
Nathan Willis5b43eb52019-04-22 19:16:48 +0100465/* func setters */
Behdad Esfahbod19c0eab2010-10-04 16:45:21 -0400466
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400467/**
468 * hb_unicode_funcs_set_combining_class_func:
Nathan Willis5b43eb52019-04-22 19:16:48 +0100469 * @ufuncs: A Unicode-functions structure
470 * @func: (closure user_data) (destroy destroy) (scope notified): The callback function to assign
471 * @user_data: Data to pass to @func
Khaled Hosny99364902020-12-31 00:19:29 +0200472 * @destroy: (nullable): The function to call when @user_data is not needed anymore
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400473 *
Nathan Willis5b43eb52019-04-22 19:16:48 +0100474 * Sets the implementation function for #hb_unicode_combining_class_func_t.
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400475 *
Behdad Esfahbodb8811422015-09-03 15:53:22 +0430476 * Since: 0.9.2
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400477 **/
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800478HB_EXTERN void
Behdad Esfahbod5c441882009-08-10 20:05:16 -0400479hb_unicode_funcs_set_combining_class_func (hb_unicode_funcs_t *ufuncs,
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400480 hb_unicode_combining_class_func_t func,
Behdad Esfahbod446df9c2011-05-10 20:14:44 -0400481 void *user_data, hb_destroy_func_t destroy);
Behdad Esfahbod5c441882009-08-10 20:05:16 -0400482
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400483/**
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400484 * hb_unicode_funcs_set_general_category_func:
Nathan Willis5b43eb52019-04-22 19:16:48 +0100485 * @ufuncs: A Unicode-functions structure
486 * @func: (closure user_data) (destroy destroy) (scope notified): The callback function to assign
487 * @user_data: Data to pass to @func
Khaled Hosny99364902020-12-31 00:19:29 +0200488 * @destroy: (nullable): The function to call when @user_data is not needed anymore
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400489 *
Nathan Willis5b43eb52019-04-22 19:16:48 +0100490 * Sets the implementation function for #hb_unicode_general_category_func_t.
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400491 *
Behdad Esfahbodb8811422015-09-03 15:53:22 +0430492 * Since: 0.9.2
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400493 **/
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800494HB_EXTERN void
Behdad Esfahbodfb194b82011-04-20 02:00:47 -0400495hb_unicode_funcs_set_general_category_func (hb_unicode_funcs_t *ufuncs,
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400496 hb_unicode_general_category_func_t func,
Behdad Esfahbod446df9c2011-05-10 20:14:44 -0400497 void *user_data, hb_destroy_func_t destroy);
Behdad Esfahbodfb194b82011-04-20 02:00:47 -0400498
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400499/**
500 * hb_unicode_funcs_set_mirroring_func:
Nathan Willis5b43eb52019-04-22 19:16:48 +0100501 * @ufuncs: A Unicode-functions structure
502 * @func: (closure user_data) (destroy destroy) (scope notified): The callback function to assign
503 * @user_data: Data to pass to @func
Khaled Hosny99364902020-12-31 00:19:29 +0200504 * @destroy: (nullable): The function to call when @user_data is not needed anymore
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400505 *
Nathan Willis5b43eb52019-04-22 19:16:48 +0100506 * Sets the implementation function for #hb_unicode_mirroring_func_t.
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400507 *
Behdad Esfahbodb8811422015-09-03 15:53:22 +0430508 * Since: 0.9.2
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400509 **/
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800510HB_EXTERN void
Behdad Esfahbodfb194b82011-04-20 02:00:47 -0400511hb_unicode_funcs_set_mirroring_func (hb_unicode_funcs_t *ufuncs,
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400512 hb_unicode_mirroring_func_t func,
Behdad Esfahbod446df9c2011-05-10 20:14:44 -0400513 void *user_data, hb_destroy_func_t destroy);
Behdad Esfahbodfb194b82011-04-20 02:00:47 -0400514
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400515/**
516 * hb_unicode_funcs_set_script_func:
Nathan Willis5b43eb52019-04-22 19:16:48 +0100517 * @ufuncs: A Unicode-functions structure
518 * @func: (closure user_data) (destroy destroy) (scope notified): The callback function to assign
519 * @user_data: Data to pass to @func
Khaled Hosny99364902020-12-31 00:19:29 +0200520 * @destroy: (nullable): The function to call when @user_data is not needed anymore
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400521 *
Nathan Willis5b43eb52019-04-22 19:16:48 +0100522 * Sets the implementation function for #hb_unicode_script_func_t.
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400523 *
Behdad Esfahbodb8811422015-09-03 15:53:22 +0430524 * Since: 0.9.2
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400525 **/
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800526HB_EXTERN void
Behdad Esfahbodfb194b82011-04-20 02:00:47 -0400527hb_unicode_funcs_set_script_func (hb_unicode_funcs_t *ufuncs,
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400528 hb_unicode_script_func_t func,
Behdad Esfahbod446df9c2011-05-10 20:14:44 -0400529 void *user_data, hb_destroy_func_t destroy);
Behdad Esfahbodfb194b82011-04-20 02:00:47 -0400530
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400531/**
532 * hb_unicode_funcs_set_compose_func:
Nathan Willis5b43eb52019-04-22 19:16:48 +0100533 * @ufuncs: A Unicode-functions structure
534 * @func: (closure user_data) (destroy destroy) (scope notified): The callback function to assign
535 * @user_data: Data to pass to @func
Khaled Hosny99364902020-12-31 00:19:29 +0200536 * @destroy: (nullable): The function to call when @user_data is not needed anymore
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400537 *
Nathan Willis5b43eb52019-04-22 19:16:48 +0100538 * Sets the implementation function for #hb_unicode_compose_func_t.
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400539 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200540 * Since: 0.9.2
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400541 **/
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800542HB_EXTERN void
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400543hb_unicode_funcs_set_compose_func (hb_unicode_funcs_t *ufuncs,
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400544 hb_unicode_compose_func_t func,
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400545 void *user_data, hb_destroy_func_t destroy);
546
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400547/**
548 * hb_unicode_funcs_set_decompose_func:
Nathan Willis5b43eb52019-04-22 19:16:48 +0100549 * @ufuncs: A Unicode-functions structure
550 * @func: (closure user_data) (destroy destroy) (scope notified): The callback function to assign
551 * @user_data: Data to pass to @func
Khaled Hosny99364902020-12-31 00:19:29 +0200552 * @destroy: (nullable): The function to call when @user_data is not needed anymore
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400553 *
Nathan Willis5b43eb52019-04-22 19:16:48 +0100554 * Sets the implementation function for #hb_unicode_decompose_func_t.
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400555 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200556 * Since: 0.9.2
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400557 **/
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800558HB_EXTERN void
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400559hb_unicode_funcs_set_decompose_func (hb_unicode_funcs_t *ufuncs,
Behdad Esfahboda8949df2013-09-13 20:23:51 -0400560 hb_unicode_decompose_func_t func,
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400561 void *user_data, hb_destroy_func_t destroy);
Behdad Esfahbodfb194b82011-04-20 02:00:47 -0400562
Behdad Esfahbod19c0eab2010-10-04 16:45:21 -0400563/* accessors */
564
Sascha Brawer01c3a882015-06-01 13:22:01 +0200565/**
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400566 * hb_unicode_combining_class:
Nathan Willis5b43eb52019-04-22 19:16:48 +0100567 * @ufuncs: The Unicode-functions structure
568 * @unicode: The code point to query
569 *
570 * Retrieves the Canonical Combining Class (ccc) property
571 * of code point @unicode.
572 *
573 * Return value: The #hb_unicode_combining_class_t of @unicode
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400574 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200575 * Since: 0.9.2
576 **/
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800577HB_EXTERN hb_unicode_combining_class_t
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400578hb_unicode_combining_class (hb_unicode_funcs_t *ufuncs,
579 hb_codepoint_t unicode);
Behdad Esfahbod5ceefa12009-12-20 15:29:16 +0100580
Sascha Brawer01c3a882015-06-01 13:22:01 +0200581/**
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400582 * hb_unicode_general_category:
Nathan Willis5b43eb52019-04-22 19:16:48 +0100583 * @ufuncs: The Unicode-functions structure
584 * @unicode: The code point to query
585 *
586 * Retrieves the General Category (gc) property
587 * of code point @unicode.
588 *
589 * Return value: The #hb_unicode_general_category_t of @unicode
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400590 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200591 * Since: 0.9.2
592 **/
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800593HB_EXTERN hb_unicode_general_category_t
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400594hb_unicode_general_category (hb_unicode_funcs_t *ufuncs,
595 hb_codepoint_t unicode);
Behdad Esfahbodfb194b82011-04-20 02:00:47 -0400596
Sascha Brawer01c3a882015-06-01 13:22:01 +0200597/**
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400598 * hb_unicode_mirroring:
Nathan Willis5b43eb52019-04-22 19:16:48 +0100599 * @ufuncs: The Unicode-functions structure
600 * @unicode: The code point to query
601 *
602 * Retrieves the Bi-directional Mirroring Glyph code
603 * point defined for code point @unicode.
604 *
605 * Return value: The #hb_codepoint_t of the Mirroring Glyph for @unicode
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400606 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200607 * Since: 0.9.2
608 **/
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800609HB_EXTERN hb_codepoint_t
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400610hb_unicode_mirroring (hb_unicode_funcs_t *ufuncs,
611 hb_codepoint_t unicode);
Behdad Esfahbodfb194b82011-04-20 02:00:47 -0400612
Sascha Brawer01c3a882015-06-01 13:22:01 +0200613/**
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400614 * hb_unicode_script:
Nathan Willis5b43eb52019-04-22 19:16:48 +0100615 * @ufuncs: The Unicode-functions structure
616 * @unicode: The code point to query
617 *
618 * Retrieves the #hb_script_t script to which code
619 * point @unicode belongs.
620 *
621 * Return value: The #hb_script_t of @unicode
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400622 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200623 * Since: 0.9.2
624 **/
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800625HB_EXTERN hb_script_t
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400626hb_unicode_script (hb_unicode_funcs_t *ufuncs,
627 hb_codepoint_t unicode);
Behdad Esfahbodfb194b82011-04-20 02:00:47 -0400628
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800629HB_EXTERN hb_bool_t
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400630hb_unicode_compose (hb_unicode_funcs_t *ufuncs,
631 hb_codepoint_t a,
632 hb_codepoint_t b,
633 hb_codepoint_t *ab);
Sascha Brawer01c3a882015-06-01 13:22:01 +0200634
Chun-wei Fan835bbdc2015-11-19 18:34:12 +0800635HB_EXTERN hb_bool_t
Behdad Esfahbodc4641722011-07-07 23:47:19 -0400636hb_unicode_decompose (hb_unicode_funcs_t *ufuncs,
637 hb_codepoint_t ab,
638 hb_codepoint_t *a,
639 hb_codepoint_t *b);
Behdad Esfahbod5ceefa12009-12-20 15:29:16 +0100640
Behdad Esfahbod5c441882009-08-10 20:05:16 -0400641HB_END_DECLS
642
Behdad Esfahbod214ac7c2009-11-04 18:12:32 -0500643#endif /* HB_UNICODE_H */