Update.
[glibc.git] / iconvdata / iso-2022-jp.c
blobecfdae4e479e6c31edb5c39435402cbe9c635021
1 /* Conversion module for ISO-2022-JP.
2 Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include <dlfcn.h>
22 #include <gconv.h>
23 #include <stdint.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include "jis0201.h"
27 #include "jis0208.h"
28 #include "jis0212.h"
29 #include "gb2312.h"
30 #include "ksc5601.h"
32 struct gap
34 uint16_t start;
35 uint16_t end;
36 int32_t idx;
39 #include "iso8859-7jp.h"
41 /* This makes obvious what everybody knows: 0x1b is the Esc character. */
42 #define ESC 0x1b
44 /* We provide our own initialization and destructor function. */
45 #define DEFINE_INIT 0
46 #define DEFINE_FINI 0
48 /* Definitions used in the body of the `gconv' function. */
49 #define FROM_LOOP from_iso2022jp_loop
50 #define TO_LOOP to_iso2022jp_loop
51 #define MIN_NEEDED_FROM 1
52 #define MAX_NEEDED_FROM 4
53 #define MIN_NEEDED_TO 4
54 #define MAX_NEEDED_TO 4
55 #define FROM_DIRECTION (dir == from_iso2022jp)
56 #define PREPARE_LOOP \
57 enum direction dir = ((struct iso2022jp_data *) step->__data)->dir; \
58 enum variant var = ((struct iso2022jp_data *) step->__data)->var; \
59 int save_set; \
60 int *setp = &data->__statep->__count;
61 #define EXTRA_LOOP_ARGS , var, setp
64 /* Direction of the transformation. */
65 enum direction
67 illegal_dir,
68 to_iso2022jp,
69 from_iso2022jp
72 /* We handle ISO-2022-jp and ISO-2022-JP-2 here. */
73 enum variant
75 illegal_var,
76 iso2022jp,
77 iso2022jp2
81 struct iso2022jp_data
83 enum direction dir;
84 enum variant var;
88 /* The COUNT element of the state keeps track of the currently selected
89 character set. The possible values are: */
90 enum
92 ASCII_set = 0,
93 JISX0208_1978_set = 8,
94 JISX0208_1983_set = 16,
95 JISX0201_Roman_set = 24,
96 JISX0201_Kana_set = 32,
97 GB2312_set = 40,
98 KSC5601_set = 48,
99 JISX0212_set = 56,
100 CURRENT_SEL_MASK = 56
103 /* The second value stored is the designation of the G2 set. The following
104 values are possible: */
105 enum
107 UNSPECIFIED_set = 0,
108 ISO88591_set = 64,
109 ISO88597_set = 128,
110 CURRENT_ASSIGN_MASK = 192
115 gconv_init (struct __gconv_step *step)
117 /* Determine which direction. */
118 struct iso2022jp_data *new_data;
119 enum direction dir = illegal_dir;
120 enum variant var = illegal_var;
121 int result;
123 if (__strcasecmp (step->__from_name, "ISO-2022-JP//") == 0)
125 dir = from_iso2022jp;
126 var = iso2022jp;
128 else if (__strcasecmp (step->__to_name, "ISO-2022-JP//") == 0)
130 dir = to_iso2022jp;
131 var = iso2022jp;
133 else if (__strcasecmp (step->__from_name, "ISO-2022-JP-2//") == 0)
135 dir = from_iso2022jp;
136 var = iso2022jp2;
138 else if (__strcasecmp (step->__to_name, "ISO-2022-JP-2//") == 0)
140 dir = to_iso2022jp;
141 var = iso2022jp2;
144 result = __GCONV_NOCONV;
145 if (__builtin_expect (dir, from_iso2022jp) != illegal_dir)
147 new_data
148 = (struct iso2022jp_data *) malloc (sizeof (struct iso2022jp_data));
150 result = __GCONV_NOMEM;
151 if (new_data != NULL)
153 new_data->dir = dir;
154 new_data->var = var;
155 step->__data = new_data;
157 if (dir == from_iso2022jp)
159 step->__min_needed_from = MIN_NEEDED_FROM;
160 step->__max_needed_from = MAX_NEEDED_FROM;
161 step->__min_needed_to = MIN_NEEDED_TO;
162 step->__max_needed_to = MAX_NEEDED_TO;
164 else
166 step->__min_needed_from = MIN_NEEDED_TO;
167 step->__max_needed_from = MAX_NEEDED_TO;
168 step->__min_needed_to = MIN_NEEDED_FROM;
169 step->__max_needed_to = MAX_NEEDED_FROM + 2;
172 /* Yes, this is a stateful encoding. */
173 step->__stateful = 1;
175 result = __GCONV_OK;
179 return result;
183 void
184 gconv_end (struct __gconv_step *data)
186 free (data->__data);
190 /* Since this is a stateful encoding we have to provide code which resets
191 the output state to the initial state. This has to be done during the
192 flushing. */
193 #define EMIT_SHIFT_TO_INIT \
194 if ((data->__statep->__count & ~7) != ASCII_set) \
196 enum direction dir = ((struct iso2022jp_data *) step->__data)->dir; \
198 if (dir == from_iso2022jp) \
200 /* It's easy, we don't have to emit anything, we just reset the \
201 state for the input. Note that this also clears the G2 \
202 designation. */ \
203 data->__statep->__count &= 7; \
204 data->__statep->__count |= ASCII_set; \
206 else \
208 unsigned char *outbuf = data->__outbuf; \
210 /* We are not in the initial state. To switch back we have \
211 to emit the sequence `Esc ( B'. */ \
212 if (__builtin_expect (outbuf + 3 > data->__outbufend, 0)) \
213 /* We don't have enough room in the output buffer. */ \
214 status = __GCONV_FULL_OUTPUT; \
215 else \
217 /* Write out the shift sequence. */ \
218 *outbuf++ = ESC; \
219 *outbuf++ = '('; \
220 *outbuf++ = 'B'; \
221 data->__outbuf = outbuf; \
222 /* Note that this also clears the G2 designation. */ \
223 data->__statep->__count &= ~7; \
224 data->__statep->__count |= ASCII_set; \
230 /* Since we might have to reset input pointer we must be able to save
231 and retore the state. */
232 #define SAVE_RESET_STATE(Save) \
233 if (Save) \
234 save_set = *setp; \
235 else \
236 *setp = save_set
239 /* First define the conversion function from ISO-2022-JP to UCS4. */
240 #define MIN_NEEDED_INPUT MIN_NEEDED_FROM
241 #define MAX_NEEDED_INPUT MAX_NEEDED_FROM
242 #define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
243 #define LOOPFCT FROM_LOOP
244 #define BODY \
246 uint32_t ch = *inptr; \
248 /* Recognize escape sequences. */ \
249 if (__builtin_expect (ch, 0) == ESC) \
251 /* We now must be prepared to read two to three more \
252 chracters. If we have a match in the first character but \
253 then the input buffer ends we terminate with an error since \
254 we must not risk missing an escape sequence just because it \
255 is not entirely in the current input buffer. */ \
256 if (__builtin_expect (inptr + 2 >= inend, 0) \
257 || (var == iso2022jp2 && inptr[1] == '$' && inptr[2] == '(' \
258 && __builtin_expect (inptr + 3 >= inend, 0))) \
260 /* Not enough input available. */ \
261 result = __GCONV_EMPTY_INPUT; \
262 break; \
265 if (inptr[1] == '(') \
267 if (inptr[2] == 'B') \
269 /* ASCII selected. */ \
270 set = ASCII_set; \
271 inptr += 3; \
272 continue; \
274 else if (inptr[2] == 'J') \
276 /* JIS X 0201 selected. */ \
277 set = JISX0201_Roman_set; \
278 inptr += 3; \
279 continue; \
281 else if (var == iso2022jp2 && inptr[2] == 'I') \
283 /* JIS X 0201 selected. */ \
284 set = JISX0201_Kana_set; \
285 inptr += 3; \
286 continue; \
289 else if (inptr[1] == '$') \
291 if (inptr[2] == '@') \
293 /* JIS X 0208-1978 selected. */ \
294 set = JISX0208_1978_set; \
295 inptr += 3; \
296 continue; \
298 else if (inptr[2] == 'B') \
300 /* JIS X 0208-1983 selected. */ \
301 set = JISX0208_1983_set; \
302 inptr += 3; \
303 continue; \
305 else if (var == iso2022jp2) \
307 if (inptr[2] == 'A') \
309 /* GB 2312-1980 selected. */ \
310 set = GB2312_set; \
311 inptr += 3; \
312 continue; \
314 else if (inptr[2] == '(') \
316 if (inptr[3] == 'C') \
318 /* KSC 5601-1987 selected. */ \
319 set = KSC5601_set; \
320 inptr += 4; \
321 continue; \
323 else if (inptr[3] == 'D') \
325 /* JIS X 0212-1990 selected. */ \
326 set = JISX0212_set; \
327 inptr += 4; \
328 continue; \
333 else if (var == iso2022jp2 && inptr[1] == '.') \
335 if (inptr[2] == 'A') \
337 /* ISO 8859-1-GR selected. */ \
338 set2 = ISO88591_set; \
339 inptr += 3; \
340 continue; \
342 else if (inptr[2] == 'F') \
344 /* ISO 8859-7-GR selected. */ \
345 set2 = ISO88597_set; \
346 inptr += 3; \
347 continue; \
352 if (ch == ESC && var == iso2022jp2 && inptr[1] == 'N') \
354 if (set2 == ISO88591_set) \
356 ch = inptr[2] | 0x80; \
357 inptr += 3; \
359 else if (__builtin_expect (set2, ISO88597_set) == ISO88597_set) \
361 /* We use the table from the ISO 8859-7 module. */ \
362 if (inptr[2] < 0x20 || inptr[2] > 0x80) \
364 if (! ignore_errors_p ()) \
366 result = __GCONV_ILLEGAL_INPUT; \
367 break; \
370 ++inptr; \
371 ++*irreversible; \
372 continue; \
374 ch = iso88597_to_ucs4[inptr[2] - 0x20]; \
375 if (ch == 0) \
377 if (! ignore_errors_p ()) \
379 result = __GCONV_ILLEGAL_INPUT; \
380 break; \
383 inptr += 3; \
384 ++*irreversible; \
385 continue; \
387 inptr += 3; \
389 else \
391 if (! ignore_errors_p ()) \
393 result = __GCONV_ILLEGAL_INPUT; \
394 break; \
397 ++inptr; \
398 ++*irreversible; \
399 continue; \
402 else if (set == ASCII_set || (ch < 0x21 || ch == 0x7f)) \
403 /* Almost done, just advance the input pointer. */ \
404 ++inptr; \
405 else if (set == JISX0201_Roman_set) \
407 /* Use the JIS X 0201 table. */ \
408 ch = jisx0201_to_ucs4 (ch); \
409 if (__builtin_expect (ch, 0) == __UNKNOWN_10646_CHAR) \
411 if (! ignore_errors_p ()) \
413 result = __GCONV_ILLEGAL_INPUT; \
414 break; \
417 ++inptr; \
418 ++*irreversible; \
419 continue; \
421 ++inptr; \
423 else if (set == JISX0201_Kana_set) \
425 /* Use the JIS X 0201 table. */ \
426 ch = jisx0201_to_ucs4 (ch + 0x80); \
427 if (__builtin_expect (ch, 0) == __UNKNOWN_10646_CHAR) \
429 if (! ignore_errors_p ()) \
431 result = __GCONV_ILLEGAL_INPUT; \
432 break; \
435 ++inptr; \
436 ++*irreversible; \
437 continue; \
439 ++inptr; \
441 else \
443 if (set == JISX0208_1978_set || set == JISX0208_1983_set) \
444 /* XXX I don't have the tables for these two old variants of \
445 JIS X 0208. Therefore I'm using the tables for JIS X \
446 0208-1990. If somebody has problems with this please \
447 provide the appropriate tables. */ \
448 ch = jisx0208_to_ucs4 (&inptr, inend - inptr, 0); \
449 else if (set == JISX0212_set) \
450 /* Use the JIS X 0212 table. */ \
451 ch = jisx0212_to_ucs4 (&inptr, inend - inptr, 0); \
452 else if (set == GB2312_set) \
453 /* Use the GB 2312 table. */ \
454 ch = gb2312_to_ucs4 (&inptr, inend - inptr, 0); \
455 else \
457 assert (set == KSC5601_set); \
459 /* Use the KSC 5601 table. */ \
460 ch = ksc5601_to_ucs4 (&inptr, inend - inptr, 0); \
463 if (__builtin_expect (ch, 1) == 0) \
465 result = __GCONV_EMPTY_INPUT; \
466 break; \
468 else if (__builtin_expect (ch, 0) == __UNKNOWN_10646_CHAR) \
470 if (! ignore_errors_p ()) \
472 result = __GCONV_ILLEGAL_INPUT; \
473 break; \
476 ++inptr; \
477 ++*irreversible; \
478 continue; \
482 put32 (outptr, ch); \
483 outptr += 4; \
485 #define LOOP_NEED_FLAGS
486 #define EXTRA_LOOP_DECLS , enum variant var, int *setp
487 #define INIT_PARAMS int set = *setp & CURRENT_SEL_MASK; \
488 int set2 = *setp & CURRENT_ASSIGN_MASK
489 #define UPDATE_PARAMS *setp = set | set2
490 #include <iconv/loop.c>
493 /* Next, define the other direction. */
494 #define MIN_NEEDED_INPUT MIN_NEEDED_TO
495 #define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
496 #define MAX_NEEDED_OUTPUT (MAX_NEEDED_FROM + 2)
497 #define LOOPFCT TO_LOOP
498 #define BODY \
500 uint32_t ch; \
501 size_t written = 0; \
503 ch = get32 (inptr); \
505 /* First see whether we can write the character using the currently \
506 selected character set. */ \
507 if (set == ASCII_set) \
509 /* Please note that the NUL byte is *not* matched if we are not \
510 currently using the ASCII charset. This is because we must \
511 switch to the initial state whenever a NUL byte is written. */ \
512 if (ch <= 0x7f) \
514 *outptr++ = ch; \
515 written = 1; \
517 /* At the beginning of a line, G2 designation is cleared. */ \
518 if (var == iso2022jp2 && ch == 0x0a) \
519 set2 = UNSPECIFIED_set; \
521 /* ISO-2022-JP recommends to encode the newline character always in \
522 ASCII since this allows a context-free interpretation of the \
523 characters at the beginning of the next line. Otherwise it would \
524 have to be known whether the last line ended using ASCII or \
525 JIS X 0201. */ \
526 else if (set == JISX0201_Roman_set) \
528 unsigned char buf[2]; \
529 written = ucs4_to_jisx0201 (ch, buf); \
530 if (written != __UNKNOWN_10646_CHAR && buf[0] > 0x20 \
531 && buf[0] < 0x80) \
533 *outptr++ = buf[0]; \
534 written = 1; \
536 else \
537 written = __UNKNOWN_10646_CHAR; \
539 else if (set == JISX0201_Kana_set) \
541 unsigned char buf[2]; \
542 written = ucs4_to_jisx0201 (ch, buf); \
543 if (written != __UNKNOWN_10646_CHAR && buf[0] > 0xa0 \
544 && buf[0] < 0xe0) \
546 *outptr++ = buf[0] - 0x80; \
547 written = 1; \
549 else \
550 written = __UNKNOWN_10646_CHAR; \
552 else \
554 if (set == JISX0208_1978_set || set == JISX0208_1983_set) \
555 written = ucs4_to_jisx0208 (ch, outptr, outend - outptr); \
556 else if (set == JISX0212_set) \
557 written = ucs4_to_jisx0212 (ch, outptr, outend - outptr); \
558 else if (set == GB2312_set) \
559 written = ucs4_to_gb2312 (ch, outptr, outend - outptr); \
560 else \
562 assert (set == KSC5601_set); \
564 written = ucs4_to_ksc5601 (ch, outptr, outend - outptr); \
567 if (__builtin_expect (written, 1) == 0) \
569 result = __GCONV_FULL_OUTPUT; \
570 break; \
572 else if (written != __UNKNOWN_10646_CHAR) \
573 outptr += written; \
576 if (written == __UNKNOWN_10646_CHAR || written == 0) \
578 if (set2 == ISO88591_set) \
580 if (ch >= 0x80 && ch <= 0xff) \
582 *outptr++ = ESC; \
583 *outptr++ = 'N'; \
584 *outptr++ = ch & 0x7f; \
585 written = 3; \
588 else if (set2 == ISO88597_set) \
590 const struct gap *rp = from_idx; \
592 while (ch > rp->end) \
593 ++rp; \
594 if (ch >= rp->start) \
596 unsigned char res = iso88597_from_ucs4[ch - 0xa0 + rp->idx]; \
597 if (res != '\0') \
599 *outptr++ = ESC; \
600 *outptr++ = 'N'; \
601 *outptr++ = res; \
602 written = 3; \
608 if (written == __UNKNOWN_10646_CHAR || written == 0) \
610 /* Either this is an unknown character or we have to switch \
611 the currently selected character set. The character sets \
612 do not code entirely separate parts of ISO 10646 and \
613 therefore there is no single correct result. If we choose \
614 the character set to use wrong we might be end up with \
615 using yet another character set for the next character \
616 though the current and the next could be encoded with one \
617 character set. We leave this kind of optimization for \
618 later and now simply use a fixed order in which we test for \
619 availability */ \
621 if (ch <= 0x7f) \
623 /* We must encode using ASCII. First write out the \
624 escape sequence. */ \
625 if (__builtin_expect (outptr + 3 > outend, 0)) \
627 result = __GCONV_FULL_OUTPUT; \
628 break; \
631 *outptr++ = ESC; \
632 *outptr++ = '('; \
633 *outptr++ = 'B'; \
634 set = ASCII_set; \
636 if (__builtin_expect (outptr + 1 > outend, 0)) \
638 result = __GCONV_FULL_OUTPUT; \
639 break; \
641 *outptr++ = ch; \
643 /* At the beginning of a line, G2 designation is cleared. */ \
644 if (var == iso2022jp2 && ch == 0x0a) \
645 set2 = UNSPECIFIED_set; \
647 else \
649 /* Now it becomes difficult. We must search the other \
650 character sets one by one and we cannot use simple \
651 arithmetic to determine whether the character can be \
652 encoded using this set. */ \
653 size_t written; \
654 unsigned char buf[2]; \
656 written = ucs4_to_jisx0201 (ch, buf); \
657 if (written != __UNKNOWN_10646_CHAR && buf[0] < 0x80) \
659 /* We use JIS X 0201. */ \
660 if (__builtin_expect (outptr + 3 > outend, 0)) \
662 result = __GCONV_FULL_OUTPUT; \
663 break; \
666 *outptr++ = ESC; \
667 *outptr++ = '('; \
668 *outptr++ = 'J'; \
669 set = JISX0201_Roman_set; \
671 if (__builtin_expect (outptr + 1 > outend, 0)) \
673 result = __GCONV_FULL_OUTPUT; \
674 break; \
676 *outptr++ = buf[0]; \
678 else \
680 written = ucs4_to_jisx0208 (ch, buf, 2); \
681 if (written != __UNKNOWN_10646_CHAR) \
683 /* We use JIS X 0208. */ \
684 if (__builtin_expect (outptr + 3 > outend, 0)) \
686 result = __GCONV_FULL_OUTPUT; \
687 break; \
690 *outptr++ = ESC; \
691 *outptr++ = '$'; \
692 *outptr++ = 'B'; \
693 set = JISX0208_1983_set; \
695 if (__builtin_expect (outptr + 2 > outend, 0)) \
697 result = __GCONV_FULL_OUTPUT; \
698 break; \
700 *outptr++ = buf[0]; \
701 *outptr++ = buf[1]; \
703 else if (__builtin_expect (var, iso2022jp2) == iso2022jp) \
705 /* We have no other choice. */ \
706 STANDARD_ERR_HANDLER (4); \
708 else \
710 written = ucs4_to_jisx0212 (ch, buf, 2); \
711 if (written != __UNKNOWN_10646_CHAR) \
713 /* We use JIS X 0212. */ \
714 if (__builtin_expect (outptr + 4 > outend, 0)) \
716 result = __GCONV_FULL_OUTPUT; \
717 break; \
719 *outptr++ = ESC; \
720 *outptr++ = '$'; \
721 *outptr++ = '('; \
722 *outptr++ = 'D'; \
723 set = JISX0212_set; \
725 if (__builtin_expect (outptr + 2 > outend, 0)) \
727 result = __GCONV_FULL_OUTPUT; \
728 break; \
730 *outptr++ = buf[0]; \
731 *outptr++ = buf[1]; \
733 else \
735 written = ucs4_to_jisx0201 (ch, buf); \
736 if (written != __UNKNOWN_10646_CHAR \
737 && buf[0] >= 0x80) \
739 /* We use JIS X 0201. */ \
740 if (__builtin_expect (outptr + 3 > outend, 0)) \
742 result = __GCONV_FULL_OUTPUT; \
743 break; \
746 *outptr++ = ESC; \
747 *outptr++ = '('; \
748 *outptr++ = 'I'; \
749 set = JISX0201_Kana_set; \
751 if (__builtin_expect (outptr + 1 > outend, 0)) \
753 result = __GCONV_FULL_OUTPUT; \
754 break; \
756 *outptr++ = buf[0] - 0x80; \
758 else if (ch != 0xa5 && ch >= 0x80 && ch <= 0xff) \
760 /* ISO 8859-1 upper half. */ \
761 if (__builtin_expect (outptr + 3 > outend, 0)) \
763 result = __GCONV_FULL_OUTPUT; \
764 break; \
767 *outptr++ = ESC; \
768 *outptr++ = '.'; \
769 *outptr++ = 'A'; \
770 set2 = ISO88591_set; \
772 if (__builtin_expect (outptr + 3 > outend, 0)) \
774 result = __GCONV_FULL_OUTPUT; \
775 break; \
777 *outptr++ = ESC; \
778 *outptr++ = 'N'; \
779 *outptr++ = ch; \
781 else \
783 written = ucs4_to_gb2312 (ch, buf, 2); \
784 if (written != __UNKNOWN_10646_CHAR) \
786 /* We use GB 2312. */ \
787 if (__builtin_expect (outptr + 3 > outend, 0))\
789 result = __GCONV_FULL_OUTPUT; \
790 break; \
793 *outptr++ = ESC; \
794 *outptr++ = '$'; \
795 *outptr++ = 'A'; \
796 set = GB2312_set; \
798 if (__builtin_expect (outptr + 2 > outend, 0))\
800 result = __GCONV_FULL_OUTPUT; \
801 break; \
803 *outptr++ = buf[0]; \
804 *outptr++ = buf[1]; \
806 else \
808 written = ucs4_to_ksc5601 (ch, buf, 2); \
809 if (written != __UNKNOWN_10646_CHAR) \
811 /* We use KSC 5601. */ \
812 if (__builtin_expect (outptr + 4 > outend,\
813 0)) \
815 result = __GCONV_FULL_OUTPUT; \
816 break; \
818 *outptr++ = ESC; \
819 *outptr++ = '$'; \
820 *outptr++ = '('; \
821 *outptr++ = 'C'; \
822 set = KSC5601_set; \
824 if (__builtin_expect (outptr + 2 > outend,\
825 0)) \
827 result = __GCONV_FULL_OUTPUT; \
828 break; \
830 *outptr++ = buf[0]; \
831 *outptr++ = buf[1]; \
833 else \
835 const struct gap *rp = from_idx; \
836 unsigned char gch = 0; \
838 while (ch > rp->end) \
839 ++rp; \
840 if (ch >= rp->start) \
842 ch = ch - 0xa0 + rp->idx; \
843 gch = iso88597_from_ucs4[ch]; \
846 if (__builtin_expect (gch, 1) != 0) \
848 /* We use ISO 8859-7 greek. */ \
849 if (__builtin_expect (outptr + 3 \
850 > outend, 0)) \
852 result = __GCONV_FULL_OUTPUT; \
853 break; \
855 *outptr++ = ESC; \
856 *outptr++ = '.'; \
857 *outptr++ = 'F'; \
858 set2 = ISO88597_set; \
860 if (__builtin_expect (outptr + 3 \
861 > outend, 0)) \
863 result = __GCONV_FULL_OUTPUT; \
864 break; \
866 *outptr++ = ESC; \
867 *outptr++ = 'N'; \
868 *outptr++ = gch; \
870 else \
872 STANDARD_ERR_HANDLER (4); \
883 /* Now that we wrote the output increment the input pointer. */ \
884 inptr += 4; \
886 #define LOOP_NEED_FLAGS
887 #define EXTRA_LOOP_DECLS , enum variant var, int *setp
888 #define INIT_PARAMS int set = *setp & CURRENT_SEL_MASK; \
889 int set2 = *setp & CURRENT_ASSIGN_MASK
890 #define UPDATE_PARAMS *setp = set | set2
891 #include <iconv/loop.c>
894 /* Now define the toplevel functions. */
895 #include <iconv/skeleton.c>