4 * Copyright (c) 2023 Nicholas Marriott <nicholas.marriott@gmail.com>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
27 static const wchar_t utf8_modifier_table
[] = {
61 /* Has this got a zero width joiner at the end? */
63 utf8_has_zwj(const struct utf8_data
*ud
)
67 return (memcmp(ud
->data
+ ud
->size
- 3, "\342\200\215", 3) == 0);
70 /* Is this a zero width joiner? */
72 utf8_is_zwj(const struct utf8_data
*ud
)
76 return (memcmp(ud
->data
, "\342\200\215", 3) == 0);
79 /* Is this a variation selector? */
81 utf8_is_vs(const struct utf8_data
*ud
)
85 return (memcmp(ud
->data
, "\357\270\217", 3) == 0);
88 /* Is this in the modifier table? */
90 utf8_is_modifier(const struct utf8_data
*ud
)
94 if (utf8_towc(ud
, &wc
) != UTF8_DONE
)
96 if (!utf8_in_table(wc
, utf8_modifier_table
,
97 nitems(utf8_modifier_table
)))