Don't assume that $(inst_zonedir) is a subdir of $(inst_datadir).
[glibc/pb-stable.git] / iconvdata / cns11643l2.h
blob0fea3885ff24fa71ec8c74d888fe420bcb57158b
1 /* Access functions for CNS 11643, plane 2 handling.
2 Copyright (C) 1998, 1999 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 <stdint.h>
22 #include <gconv.h>
24 /* Table for CNS 11643, plane 2 to UCS4 conversion. */
25 extern const uint16_t __cns11643l2_to_ucs4_tab[];
28 static inline uint32_t
29 cns11643l2_to_ucs4 (const unsigned char **s, size_t avail,
30 unsigned char offset)
32 unsigned char ch = *(*s);
33 unsigned char ch2;
34 int idx;
36 if (ch < offset || (ch - offset) <= 0x20 || (ch - offset) > 0x7d)
37 return __UNKNOWN_10646_CHAR;
39 if (avail < 2)
40 return 0;
42 ch2 = (*s)[1];
43 if ((ch2 - offset) <= 0x20 || (ch2 - offset) >= 0x7f)
44 return __UNKNOWN_10646_CHAR;
46 idx = (ch - 0x21 - offset) * 94 + (ch2 - 0x21 - offset);
47 if (idx > 0x1de1)
48 return __UNKNOWN_10646_CHAR;
50 (*s) += 2;
52 return __cns11643l2_to_ucs4_tab[idx] ?: ((*s) -= 2, __UNKNOWN_10646_CHAR);
56 /* The table which contains the CNS 11643 level 2 mappings. */
57 extern const char __cns11643_from_ucs4_tab[][3];
60 static inline size_t
61 ucs4_to_cns11643l2 (uint32_t wch, unsigned char *s, size_t avail)
63 unsigned int ch = (unsigned int) wch;
64 const char *cp = NULL;
66 if (ch >= 0x4e07 && ch <= 0x9fa4)
68 cp = __cns11643_from_ucs4_tab[ch - 0x4e00];
69 if (cp[0] == '\2')
70 ++cp;
71 else
72 cp = NULL;
75 if (cp == NULL)
76 return __UNKNOWN_10646_CHAR;
78 if (avail < 2)
79 return 0;
81 s[0] = cp[0];
82 s[1] = cp[1];
84 return 2;