1 /* Mapping tables for EUC-KR handling.
2 Copyright (C) 1998-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
25 __attribute ((always_inline
))
26 euckr_from_ucs4 (uint32_t ch
, unsigned char *cp
)
30 if (__builtin_expect (ch
, 0) == 0x20a9)
32 /* Half-width Korean Currency WON sign. There is no
33 equivalent in EUC-KR. Some mappings use \x5c because
34 this is what some old Korean ASCII variants used but this
35 is causing problems. We map it to the FULL WIDTH WON SIGN. */
39 else if (__builtin_expect (ucs4_to_ksc5601 (ch
, cp
, 2), 0)
40 != __UNKNOWN_10646_CHAR
)
50 /* There is no mapping for U005c but we nevertheless map it to
52 cp
[0] = (unsigned char) ch
;
58 /* Definitions used in the body of the `gconv' function. */
59 #define CHARSET_NAME "EUC-KR//"
60 #define FROM_LOOP from_euc_kr
61 #define TO_LOOP to_euc_kr
64 #define MIN_NEEDED_FROM 1
65 #define MAX_NEEDED_FROM 2
66 #define MIN_NEEDED_TO 4
67 #define ONE_DIRECTION 0
70 /* First define the conversion function from EUC-KR to UCS4. */
71 #define MIN_NEEDED_INPUT MIN_NEEDED_FROM
72 #define MAX_NEEDED_INPUT MAX_NEEDED_FROM
73 #define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
74 #define LOOPFCT FROM_LOOP
77 uint32_t ch = *inptr; \
81 else if (__glibc_unlikely (ch == 0xa0)) \
83 /* This is illegal. */ \
84 STANDARD_FROM_LOOP_ERR_HANDLER (1); \
88 /* Two-byte character. First test whether the next byte \
89 is also available. */ \
90 ch = ksc5601_to_ucs4 (&inptr, inend - inptr, 0x80); \
91 if (__glibc_unlikely (ch == 0)) \
93 /* The second byte is not available. */ \
94 result = __GCONV_INCOMPLETE_INPUT; \
97 if (__glibc_unlikely (ch == __UNKNOWN_10646_CHAR)) \
98 /* This is an illegal character. */ \
99 STANDARD_FROM_LOOP_ERR_HANDLER (2); \
102 put32 (outptr, ch); \
105 #define LOOP_NEED_FLAGS
106 #define ONEBYTE_BODY \
113 #include <iconv/loop.c>
116 /* Next, define the other direction. */
117 #define MIN_NEEDED_INPUT MIN_NEEDED_TO
118 #define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
119 #define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
120 #define LOOPFCT TO_LOOP
123 uint32_t ch = get32 (inptr); \
124 unsigned char cp[2]; \
126 /* Decomposing Hangul syllables not available in KS C 5601 into \
127 Jamos should be considered either here or in euckr_from_ucs4() */ \
128 euckr_from_ucs4 (ch, cp); \
130 if (__builtin_expect (cp[0], '\1') == '\0' && ch != 0) \
132 UNICODE_TAG_HANDLER (ch, 4); \
134 /* Illegal character. */ \
135 STANDARD_TO_LOOP_ERR_HANDLER (4); \
139 /* Now test for a possible second byte and write this if possible. */ \
142 if (__glibc_unlikely (outptr >= outend)) \
144 /* The result does not fit into the buffer. */ \
146 result = __GCONV_FULL_OUTPUT; \
154 #define LOOP_NEED_FLAGS
155 #include <iconv/loop.c>
158 /* Now define the toplevel functions. */
159 #include <iconv/skeleton.c>