1 /* Conversion from and to CP1258.
2 Copyright (C) 1998, 2001 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998,
5 and Bruno Haible <haible@clisp.cons.org>, 2001.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public
18 License along with the GNU C Library; see the file COPYING.LIB. If not,
19 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
27 #define NELEMS(arr) (sizeof (arr) / sizeof (arr[0]))
29 /* Definitions used in the body of the `gconv' function. */
30 #define CHARSET_NAME "CP1258//"
31 #define FROM_LOOP from_cp1258
32 #define TO_LOOP to_cp1258
35 #define MIN_NEEDED_FROM 1
36 #define MAX_NEEDED_FROM 1
37 #define MIN_NEEDED_TO 4
38 #define MAX_NEEDED_TO 4
39 #define PREPARE_LOOP \
41 int *statep = &data->__statep->__count;
42 #define EXTRA_LOOP_ARGS , statep
45 /* Since we might have to reset input pointer we must be able to save
46 and restore the state. */
47 #define SAVE_RESET_STATE(Save) \
49 saved_state = *statep; \
54 /* During CP1258 to UCS4 conversion, the COUNT element of the state
55 contains the last UCS4 character, shifted by 3 bits. */
58 /* Since this is a stateful encoding we have to provide code which resets
59 the output state to the initial state. This has to be done during the
61 #define EMIT_SHIFT_TO_INIT \
62 if (data->__statep->__count != 0) \
66 if (__builtin_expect (outbuf + 4 <= outend, 1)) \
68 /* Write out the last character. */ \
69 *((uint32_t *) outbuf)++ = data->__statep->__count >> 3; \
70 data->__statep->__count = 0; \
73 /* We don't have enough room in the output buffer. */ \
74 status = __GCONV_FULL_OUTPUT; \
77 /* We don't use shift states in the TO_DIRECTION. */ \
78 data->__statep->__count = 0; \
82 /* First define the conversion function from CP1258 to UCS4. */
84 static const uint16_t to_ucs4
[128] = {
86 0x20AC, 0, 0x201A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021,
87 0x02C6, 0x2030, 0, 0x2039, 0x0152, 0, 0, 0,
89 0, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,
90 0x02DC, 0x2122, 0, 0x203A, 0x0153, 0, 0, 0x0178,
92 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7,
93 0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,
95 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,
96 0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF,
98 0x00C0, 0x00C1, 0x00C2, 0x0102, 0x00C4, 0x00C5, 0x00C6, 0x00C7,
99 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x0300, 0x00CD, 0x00CE, 0x00CF,
101 0x0110, 0x00D1, 0x0309, 0x00D3, 0x00D4, 0x01A0, 0x00D6, 0x00D7,
102 0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x01AF, 0x0303, 0x00DF,
104 0x00E0, 0x00E1, 0x00E2, 0x0103, 0x00E4, 0x00E5, 0x00E6, 0x00E7,
105 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x0301, 0x00ED, 0x00EE, 0x00EF,
107 0x0111, 0x00F1, 0x0323, 0x00F3, 0x00F4, 0x01A1, 0x00F6, 0x00F7,
108 0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x01B0, 0x20AB, 0x00FF,
111 /* CP1258 contains five combining characters:
112 0x0300, 0x0301, 0x0303, 0x0309, 0x0323. */
114 /* Composition tables for each of the relevant combining characters. */
115 static const struct {
118 } comp_table_data
[] = {
119 #define COMP_TABLE_IDX_0300 0
120 #define COMP_TABLE_LEN_0300 31
148 /*{ 0x0112, 0x1E14 },*/
149 /*{ 0x0113, 0x1E15 },*/
150 /*{ 0x014C, 0x1E50 },*/
151 /*{ 0x014D, 0x1E51 },*/
156 #define COMP_TABLE_IDX_0301 (COMP_TABLE_IDX_0300 + COMP_TABLE_LEN_0300)
157 #define COMP_TABLE_LEN_0301 60
201 /*{ 0x00D5, 0x1E4C },*/
211 /*{ 0x00F5, 0x1E4D },*/
216 /*{ 0x0112, 0x1E16 },*/
217 /*{ 0x0113, 0x1E17 },*/
218 /*{ 0x014C, 0x1E52 },*/
219 /*{ 0x014D, 0x1E53 },*/
220 /*{ 0x0168, 0x1E78 },*/
221 /*{ 0x0169, 0x1E79 },*/
226 #define COMP_TABLE_IDX_0303 (COMP_TABLE_IDX_0301 + COMP_TABLE_LEN_0301)
227 #define COMP_TABLE_LEN_0303 34
262 #define COMP_TABLE_IDX_0309 (COMP_TABLE_IDX_0303 + COMP_TABLE_LEN_0303)
263 #define COMP_TABLE_LEN_0309 24
288 #define COMP_TABLE_IDX_0323 (COMP_TABLE_IDX_0309 + COMP_TABLE_LEN_0309)
289 #define COMP_TABLE_LEN_0323 50
340 #define COMP_TABLE_IDX_END (COMP_TABLE_IDX_0323 + COMP_TABLE_LEN_0323)
342 /* Compile-time verification of table size. */
343 typedef int verify1
[(NELEMS (comp_table_data
) == COMP_TABLE_IDX_END
) - 1];
345 static const struct { unsigned int idx
; unsigned int len
; } comp_table
[5] = {
346 { COMP_TABLE_IDX_0300
, COMP_TABLE_LEN_0300
},
347 { COMP_TABLE_IDX_0301
, COMP_TABLE_LEN_0301
},
348 { COMP_TABLE_IDX_0303
, COMP_TABLE_LEN_0303
},
349 { COMP_TABLE_IDX_0309
, COMP_TABLE_LEN_0309
},
350 { COMP_TABLE_IDX_0323
, COMP_TABLE_LEN_0323
},
353 #define MIN_NEEDED_INPUT MIN_NEEDED_FROM
354 #define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
355 #define MAX_NEEDED_OUTPUT 8
356 #define LOOPFCT FROM_LOOP
359 uint32_t ch = *inptr; \
361 int must_buffer_ch; \
365 ch = to_ucs4[ch - 0x80]; \
366 if (__builtin_expect (ch == L'\0', 0)) \
368 /* This is an illegal character. */ \
369 if (! ignore_errors_p ()) \
371 result = __GCONV_ILLEGAL_INPUT; \
381 /* Determine whether there is a buffered character pending. */ \
382 last_ch = *statep >> 3; \
384 /* We have to buffer ch if it is a possible match in comp_table_data. */ \
385 must_buffer_ch = (ch >= 0x0041 && ch <= 0x01b0); \
389 if (ch >= 0x0300 && ch < 0x0340) \
391 /* See whether last_ch and ch can be combined. */ \
392 unsigned int i, i1, i2; \
415 i1 = comp_table[i].idx; \
416 i2 = i1 + comp_table[i].len - 1; \
418 if (last_ch >= comp_table_data[i1].base \
419 && last_ch <= comp_table_data[i2].base) \
423 i = (i1 + i2) >> 1; \
424 if (last_ch == comp_table_data[i].base) \
426 if (last_ch < comp_table_data[i].base) \
429 goto not_combining; \
439 if (last_ch == comp_table_data[i].base) \
441 goto not_combining; \
445 last_ch = comp_table_data[i].composed; \
446 /* Output the combined character. */ \
447 put32 (outptr, last_ch); \
456 /* Output the buffered character. */ \
457 put32 (outptr, last_ch); \
461 /* If we don't have enough room to output ch as well, then deal \
462 with it in another round. */ \
463 if (!must_buffer_ch && __builtin_expect (outptr + 4 > outend, 0)) \
467 if (must_buffer_ch) \
471 put32 (outptr, ch); \
476 #define LOOP_NEED_FLAGS
477 #define EXTRA_LOOP_DECLS , int *statep
478 #include <iconv/loop.c>
481 /* Next, define the conversion function from UCS4 to CP1258. */
483 static const unsigned char from_ucs4
[] = {
484 #define FROM_IDX_00 0
485 0xc4, 0xc5, 0xc6, 0xc7, /* 0x00c4-0x00c7 */
486 0xc8, 0xc9, 0xca, 0xcb, 0x00, 0xcd, 0xce, 0xcf, /* 0x00c8-0x00cf */
487 0x00, 0xd1, 0x00, 0xd3, 0xd4, 0x00, 0xd6, 0xd7, /* 0x00d0-0x00d7 */
488 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0x00, 0x00, 0xdf, /* 0x00d8-0x00df */
489 0xe0, 0xe1, 0xe2, 0x00, 0xe4, 0xe5, 0xe6, 0xe7, /* 0x00e0-0x00e7 */
490 0xe8, 0xe9, 0xea, 0xeb, 0x00, 0xed, 0xee, 0xef, /* 0x00e8-0x00ef */
491 0x00, 0xf1, 0x00, 0xf3, 0xf4, 0x00, 0xf6, 0xf7, /* 0x00f0-0x00f7 */
492 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0x00, 0x00, 0xff, /* 0x00f8-0x00ff */
493 0x00, 0x00, 0xc3, 0xe3, 0x00, 0x00, 0x00, 0x00, /* 0x0100-0x0107 */
494 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0108-0x010f */
495 0xd0, 0xf0, /* 0x0110-0x0111 */
496 #define FROM_IDX_01 (FROM_IDX_00 + 78)
497 0x8c, 0x9c, 0x00, 0x00, 0x00, 0x00, /* 0x0152-0x0157 */
498 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0158-0x015f */
499 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0160-0x0167 */
500 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0168-0x016f */
501 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0170-0x0177 */
502 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0178-0x017f */
503 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0180-0x0187 */
504 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0188-0x018f */
505 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0190-0x0197 */
506 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0198-0x019f */
507 0xd5, 0xf5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x01a0-0x01a7 */
508 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdd, /* 0x01a8-0x01af */
509 0xfd, /* 0x01b0-0x01b0 */
510 #define FROM_IDX_02 (FROM_IDX_01 + 95)
511 0x88, 0x00, /* 0x02c6-0x02c7 */
512 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x02c8-0x02cf */
513 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x02d0-0x02d7 */
514 0x00, 0x00, 0x00, 0x00, 0x98, /* 0x02d8-0x02dc */
515 #define FROM_IDX_03 (FROM_IDX_02 + 23)
516 0xcc, 0xec, 0x00, 0xde, 0x00, 0x00, 0x00, 0x00, /* 0x0300-0x0307 */
517 0x00, 0xd2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0308-0x030f */
518 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0310-0x0317 */
519 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x0318-0x031f */
520 0x00, 0x00, 0x00, 0xf2, /* 0x0320-0x0323 */
521 #define FROM_IDX_20 (FROM_IDX_03 + 36)
522 0x96, 0x97, 0x00, 0x00, 0x00, /* 0x2013-0x2017 */
523 0x91, 0x92, 0x82, 0x00, 0x93, 0x94, 0x84, 0x00, /* 0x2018-0x201f */
524 0x86, 0x87, 0x95, 0x00, 0x00, 0x00, 0x85, 0x00, /* 0x2020-0x2027 */
525 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x2028-0x202f */
526 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x2030-0x2037 */
527 0x00, 0x8b, 0x9b, /* 0x2038-0x203a */
528 #define FROM_IDX_FF (FROM_IDX_20 + 40)
530 /* Compile-time verification of table size. */
531 typedef int verify2
[(NELEMS (from_ucs4
) == FROM_IDX_FF
) - 1];
533 static const unsigned char comb_table
[5] = {
534 0xcc, 0xec, 0xde, 0xd2, 0xf2,
537 /* Decomposition table for the relevant Unicode characters. */
538 static const struct {
543 { 0x00c0, 0x0041, 0 },
544 { 0x00c1, 0x0041, 1 },
545 { 0x00c3, 0x0041, 2 },
546 { 0x00c8, 0x0045, 0 },
547 { 0x00c9, 0x0045, 1 },
548 { 0x00cc, 0x0049, 0 },
549 { 0x00cd, 0x0049, 1 },
550 { 0x00d1, 0x004e, 2 },
551 { 0x00d2, 0x004f, 0 },
552 { 0x00d3, 0x004f, 1 },
553 { 0x00d5, 0x004f, 2 },
554 { 0x00d9, 0x0055, 0 },
555 { 0x00da, 0x0055, 1 },
556 { 0x00dd, 0x0059, 1 },
557 { 0x00e0, 0x0061, 0 },
558 { 0x00e1, 0x0061, 1 },
559 { 0x00e3, 0x0061, 2 },
560 { 0x00e8, 0x0065, 0 },
561 { 0x00e9, 0x0065, 1 },
562 { 0x00ec, 0x0069, 0 },
563 { 0x00ed, 0x0069, 1 },
564 { 0x00f1, 0x006e, 2 },
565 { 0x00f2, 0x006f, 0 },
566 { 0x00f3, 0x006f, 1 },
567 { 0x00f5, 0x006f, 2 },
568 { 0x00f9, 0x0075, 0 },
569 { 0x00fa, 0x0075, 1 },
570 { 0x00fd, 0x0079, 1 },
571 { 0x0106, 0x0043, 1 },
572 { 0x0107, 0x0063, 1 },
573 { 0x0128, 0x0049, 2 },
574 { 0x0129, 0x0069, 2 },
575 { 0x0139, 0x004c, 1 },
576 { 0x013a, 0x006c, 1 },
577 { 0x0143, 0x004e, 1 },
578 { 0x0144, 0x006e, 1 },
579 { 0x0154, 0x0052, 1 },
580 { 0x0155, 0x0072, 1 },
581 { 0x015a, 0x0053, 1 },
582 { 0x015b, 0x0073, 1 },
583 { 0x0168, 0x0055, 2 },
584 { 0x0169, 0x0075, 2 },
585 { 0x0179, 0x005a, 1 },
586 { 0x017a, 0x007a, 1 },
587 { 0x01d7, 0x00dc, 1 },
588 { 0x01d8, 0x00fc, 1 },
589 { 0x01db, 0x00dc, 0 },
590 { 0x01dc, 0x00fc, 0 },
591 { 0x01f4, 0x0047, 1 },
592 { 0x01f5, 0x0067, 1 },
593 { 0x01f8, 0x004e, 0 },
594 { 0x01f9, 0x006e, 0 },
595 { 0x01fa, 0x00c5, 1 },
596 { 0x01fb, 0x00e5, 1 },
597 { 0x01fc, 0x00c6, 1 },
598 { 0x01fd, 0x00e6, 1 },
599 { 0x01fe, 0x00d8, 1 },
600 { 0x01ff, 0x00f8, 1 },
601 { 0x0385, 0x00a5, 1 },
602 { 0x1e04, 0x0042, 4 },
603 { 0x1e05, 0x0062, 4 },
604 { 0x1e08, 0x00c7, 1 },
605 { 0x1e09, 0x00e7, 1 },
606 { 0x1e0c, 0x0044, 4 },
607 { 0x1e0d, 0x0064, 4 },
608 { 0x1e24, 0x0048, 4 },
609 { 0x1e25, 0x0068, 4 },
610 { 0x1e2e, 0x00cf, 1 },
611 { 0x1e2f, 0x00ef, 1 },
612 { 0x1e30, 0x004b, 1 },
613 { 0x1e31, 0x006b, 1 },
614 { 0x1e32, 0x004b, 4 },
615 { 0x1e33, 0x006b, 4 },
616 { 0x1e36, 0x004c, 4 },
617 { 0x1e37, 0x006c, 4 },
618 { 0x1e3e, 0x004d, 1 },
619 { 0x1e3f, 0x006d, 1 },
620 { 0x1e42, 0x004d, 4 },
621 { 0x1e43, 0x006d, 4 },
622 { 0x1e46, 0x004e, 4 },
623 { 0x1e47, 0x006e, 4 },
624 { 0x1e4c, 0x00d3, 2 }, /*{ 0x1e4c, 0x00d5, 1 }, { 0x1e4c, 0x004f, 1, 2 },*/
625 { 0x1e4d, 0x00f3, 2 }, /*{ 0x1e4d, 0x00f5, 1 }, { 0x1e4d, 0x006f, 1, 2 },*/
626 { 0x1e4e, 0x00d6, 2 },
627 { 0x1e4f, 0x00f6, 2 },
628 { 0x1e54, 0x0050, 1 },
629 { 0x1e55, 0x0070, 1 },
630 { 0x1e5a, 0x0052, 4 },
631 { 0x1e5b, 0x0072, 4 },
632 { 0x1e62, 0x0053, 4 },
633 { 0x1e63, 0x0073, 4 },
634 { 0x1e6c, 0x0054, 4 },
635 { 0x1e6d, 0x0074, 4 },
636 { 0x1e78, 0x00da, 2 }, /*{ 0x1e78, 0x0168, 1 }, { 0x1e78, 0x0055, 1, 2 },*/
637 { 0x1e79, 0x00fa, 2 }, /*{ 0x1e79, 0x0169, 1 }, { 0x1e79, 0x0075, 1, 2 },*/
638 { 0x1e7c, 0x0056, 2 },
639 { 0x1e7d, 0x0076, 2 },
640 { 0x1e7e, 0x0056, 4 },
641 { 0x1e7f, 0x0076, 4 },
642 { 0x1e80, 0x0057, 0 },
643 { 0x1e81, 0x0077, 0 },
644 { 0x1e82, 0x0057, 1 },
645 { 0x1e83, 0x0077, 1 },
646 { 0x1e88, 0x0057, 4 },
647 { 0x1e89, 0x0077, 4 },
648 { 0x1e92, 0x005a, 4 },
649 { 0x1e93, 0x007a, 4 },
650 { 0x1ea0, 0x0041, 4 },
651 { 0x1ea1, 0x0061, 4 },
652 { 0x1ea2, 0x0041, 3 },
653 { 0x1ea3, 0x0061, 3 },
654 { 0x1ea4, 0x00c2, 1 },
655 { 0x1ea5, 0x00e2, 1 },
656 { 0x1ea6, 0x00c2, 0 },
657 { 0x1ea7, 0x00e2, 0 },
658 { 0x1ea8, 0x00c2, 3 },
659 { 0x1ea9, 0x00e2, 3 },
660 { 0x1eaa, 0x00c2, 2 },
661 { 0x1eab, 0x00e2, 2 },
662 { 0x1eac, 0x00c2, 4 },
663 { 0x1ead, 0x00e2, 4 },
664 { 0x1eae, 0x0102, 1 },
665 { 0x1eaf, 0x0103, 1 },
666 { 0x1eb0, 0x0102, 0 },
667 { 0x1eb1, 0x0103, 0 },
668 { 0x1eb2, 0x0102, 3 },
669 { 0x1eb3, 0x0103, 3 },
670 { 0x1eb4, 0x0102, 2 },
671 { 0x1eb5, 0x0103, 2 },
672 { 0x1eb6, 0x0102, 4 },
673 { 0x1eb7, 0x0103, 4 },
674 { 0x1eb8, 0x0045, 4 },
675 { 0x1eb9, 0x0065, 4 },
676 { 0x1eba, 0x0045, 3 },
677 { 0x1ebb, 0x0065, 3 },
678 { 0x1ebc, 0x0045, 2 },
679 { 0x1ebd, 0x0065, 2 },
680 { 0x1ebe, 0x00ca, 1 },
681 { 0x1ebf, 0x00ea, 1 },
682 { 0x1ec0, 0x00ca, 0 },
683 { 0x1ec1, 0x00ea, 0 },
684 { 0x1ec2, 0x00ca, 3 },
685 { 0x1ec3, 0x00ea, 3 },
686 { 0x1ec4, 0x00ca, 2 },
687 { 0x1ec5, 0x00ea, 2 },
688 { 0x1ec6, 0x00ca, 4 },
689 { 0x1ec7, 0x00ea, 4 },
690 { 0x1ec8, 0x0049, 3 },
691 { 0x1ec9, 0x0069, 3 },
692 { 0x1eca, 0x0049, 4 },
693 { 0x1ecb, 0x0069, 4 },
694 { 0x1ecc, 0x004f, 4 },
695 { 0x1ecd, 0x006f, 4 },
696 { 0x1ece, 0x004f, 3 },
697 { 0x1ecf, 0x006f, 3 },
698 { 0x1ed0, 0x00d4, 1 },
699 { 0x1ed1, 0x00f4, 1 },
700 { 0x1ed2, 0x00d4, 0 },
701 { 0x1ed3, 0x00f4, 0 },
702 { 0x1ed4, 0x00d4, 3 },
703 { 0x1ed5, 0x00f4, 3 },
704 { 0x1ed6, 0x00d4, 2 },
705 { 0x1ed7, 0x00f4, 2 },
706 { 0x1ed8, 0x00d4, 4 },
707 { 0x1ed9, 0x00f4, 4 },
708 { 0x1eda, 0x01a0, 1 },
709 { 0x1edb, 0x01a1, 1 },
710 { 0x1edc, 0x01a0, 0 },
711 { 0x1edd, 0x01a1, 0 },
712 { 0x1ede, 0x01a0, 3 },
713 { 0x1edf, 0x01a1, 3 },
714 { 0x1ee0, 0x01a0, 2 },
715 { 0x1ee1, 0x01a1, 2 },
716 { 0x1ee2, 0x01a0, 4 },
717 { 0x1ee3, 0x01a1, 4 },
718 { 0x1ee4, 0x0055, 4 },
719 { 0x1ee5, 0x0075, 4 },
720 { 0x1ee6, 0x0055, 3 },
721 { 0x1ee7, 0x0075, 3 },
722 { 0x1ee8, 0x01af, 1 },
723 { 0x1ee9, 0x01b0, 1 },
724 { 0x1eea, 0x01af, 0 },
725 { 0x1eeb, 0x01b0, 0 },
726 { 0x1eec, 0x01af, 3 },
727 { 0x1eed, 0x01b0, 3 },
728 { 0x1eee, 0x01af, 2 },
729 { 0x1eef, 0x01b0, 2 },
730 { 0x1ef0, 0x01af, 4 },
731 { 0x1ef1, 0x01b0, 4 },
732 { 0x1ef2, 0x0059, 0 },
733 { 0x1ef3, 0x0079, 0 },
734 { 0x1ef4, 0x0059, 4 },
735 { 0x1ef5, 0x0079, 4 },
736 { 0x1ef6, 0x0059, 3 },
737 { 0x1ef7, 0x0079, 3 },
738 { 0x1ef8, 0x0059, 2 },
739 { 0x1ef9, 0x0079, 2 },
740 { 0x1fed, 0x00a8, 0 },
741 { 0x1fee, 0x00a8, 1 },
744 #define MIN_NEEDED_INPUT MIN_NEEDED_TO
745 #define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
746 #define MAX_NEEDED_OUTPUT 2
747 #define LOOPFCT TO_LOOP
750 uint32_t ch = get32 (inptr); \
752 if (ch < 0x0080 || (ch >= 0x00a0 && ch < 0x00c3)) \
761 if (ch >= 0x00c4 && ch < 0x0112) \
762 res = from_ucs4[ch - 0x00c4 + FROM_IDX_00]; \
763 else if (ch >= 0x0152 && ch < 0x01b1) \
764 res = from_ucs4[ch - 0x0152 + FROM_IDX_01]; \
765 else if (ch >= 0x02c6 && ch < 0x02dd) \
766 res = from_ucs4[ch - 0x02c6 + FROM_IDX_02]; \
767 else if (ch >= 0x0300 && ch < 0x0324) \
768 res = from_ucs4[ch - 0x0300 + FROM_IDX_03]; \
769 else if (ch >= 0x0340 && ch < 0x0342) /* Vietnamese tone marks */ \
770 res = from_ucs4[ch - 0x0340 + FROM_IDX_03]; \
771 else if (ch >= 0x2013 && ch < 0x203b) \
772 res = from_ucs4[ch - 0x2013 + FROM_IDX_20]; \
773 else if (ch == 0x20ab) \
775 else if (ch == 0x20ac) \
777 else if (ch == 0x2122) \
781 UNICODE_TAG_HANDLER (ch, 4); \
785 if (__builtin_expect (res != 0, 1)) \
792 /* Try canonical decomposition. */ \
793 unsigned int i1, i2; \
796 i2 = sizeof (decomp_table) / sizeof (decomp_table[0]) - 1; \
797 if (ch >= decomp_table[i1].composed \
798 && ch <= decomp_table[i2].composed) \
804 i = (i1 + i2) >> 1; \
805 if (ch == decomp_table[i].composed) \
807 if (ch < decomp_table[i].composed) \
820 if (ch == decomp_table[i].composed) \
827 /* Found a canonical decomposition. */ \
828 ch = decomp_table[i].base; \
829 /* ch is one of 0x0020, 0x0041..0x005a, 0x0061..0x007a, \
830 0x00a5, 0x00a8, 0x00c2, 0x00c5..0x00c7, 0x00ca, 0x00cf, \
831 0x00d3, 0x00d4, 0x00d6, 0x00d8, 0x00da, 0x00dc, 0x00e2, \
832 0x00e5..0x00e7, 0x00ea, 0x00ef, 0x00f3, 0x00f4, 0x00f6, \
833 0x00f8, 0x00fc, 0x0102, 0x0103, 0x01a0, 0x01a1, 0x01af, \
838 ch = from_ucs4[ch - 0x00c4 + FROM_IDX_00]; \
840 ch = from_ucs4[ch - 0x0152 + FROM_IDX_01]; \
844 /* See whether we have room for two bytes. */ \
845 if (__builtin_expect (outptr + 1 >= outend, 0)) \
847 result = __GCONV_FULL_OUTPUT; \
851 *outptr++ = (unsigned char) ch; \
852 *outptr++ = comb_table[decomp_table[i].comb1]; \
858 /* This is an illegal character. */ \
859 STANDARD_ERR_HANDLER (4); \
863 #define LOOP_NEED_FLAGS
864 #define EXTRA_LOOP_DECLS , int *statep
865 #include <iconv/loop.c>
868 /* Now define the toplevel functions. */
869 #include <iconv/skeleton.c>