1 /* Access functions for JISX0208 conversion.
2 Copyright (C) 1997, 1998 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
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. */
27 /* Conversion table. */
28 extern const uint16_t __jis0208_to_ucs
[];
30 extern const char __jisx0208_from_ucs4_lat1
[256][2];
31 extern const char __jisx0208_from_ucs4_greek
[0xc1][2];
32 extern const struct jisx0208_ucs_idx __jisx0208_from_ucs_idx
[];
33 extern const char __jisx0208_from_ucs_tab
[][2];
36 /* Struct for table with indeces in UCS mapping table. */
37 struct jisx0208_ucs_idx
45 static inline uint32_t
46 jisx0208_to_ucs4 (const unsigned char **s
, size_t avail
, unsigned char offset
)
48 unsigned char ch
= *(*s
);
52 if (ch
< offset
|| (ch
- offset
) <= 0x20 || (ch
- offset
) > 0xea)
53 return UNKNOWN_10646_CHAR
;
59 if (ch2
< offset
|| (ch2
- offset
) <= 0x20 || (ch2
- offset
) >= 0x7f)
60 return UNKNOWN_10646_CHAR
;
62 idx
= (ch
- 0x21 - offset
) * 94 + (ch2
- 0x21 - offset
);
64 return UNKNOWN_10646_CHAR
;
68 return __jis0208_to_ucs
[idx
] ?: ((*s
) -= 2, UNKNOWN_10646_CHAR
);
73 ucs4_to_jisx0208 (uint32_t wch
, char *s
, size_t avail
)
75 unsigned int ch
= (unsigned int) wch
;
82 cp
= __jisx0208_from_ucs4_lat1
[ch
];
83 else if (ch
>= 0x391 && ch
<= 0x451)
84 cp
= __jisx0208_from_ucs4_greek
[ch
- 0x391];
87 const struct jisx0208_ucs_idx
*rp
= __jisx0208_from_ucs_idx
;
90 return UNKNOWN_10646_CHAR
;
94 cp
= __jisx0208_from_ucs_tab
[rp
->idx
+ ch
- rp
->start
];
96 return UNKNOWN_10646_CHAR
;
100 return UNKNOWN_10646_CHAR
;
108 #endif /* jis0208.h */