summaryrefslogtreecommitdiff
path: root/jni/iconv/lib/iso8859_9.h
blob: 7dbd37d233ccbd8ca8afbcdab8fd97fd19a32dd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * Copyright (C) 1999-2001 Free Software Foundation, Inc.
 * This file is part of the GNU LIBICONV Library.
 *
 * The GNU LIBICONV Library is free software; you can redistribute it
 * and/or modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * The GNU LIBICONV Library is distributed in the hope that it will be
 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with the GNU LIBICONV Library; see the file COPYING.LIB.
 * If not, write to the Free Software Foundation, Inc., 51 Franklin Street,
 * Fifth Floor, Boston, MA 02110-1301, USA.
 */

/*
 * ISO-8859-9
 */

static const unsigned short iso8859_9_2uni[48] = {
  /* 0xd0 */
  0x011e0x00d10x00d20x00d30x00d40x00d50x00d60x00d7,
  0x00d80x00d90x00da0x00db0x00dc0x01300x015e0x00df,
  /* 0xe0 */
  0x00e00x00e10x00e20x00e30x00e40x00e50x00e60x00e7,
  0x00e80x00e90x00ea0x00eb0x00ec0x00ed0x00ee0x00ef,
  /* 0xf0 */
  0x011f0x00f10x00f20x00f30x00f40x00f50x00f60x00f7,
  0x00f80x00f90x00fa0x00fb0x00fc0x01310x015f0x00ff,
};

static int
iso8859_9_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, int n)
{
  unsigned char c = *s;
  if (c >= 0xd0)
    *pwc = (ucs4_t) iso8859_9_2uni[c-0xd0];
  else
    *pwc = (ucs4_t) c;
  return 1;
}

static const unsigned char iso8859_9_page00[48] = {
  0x000xd10xd20xd30xd40xd50xd60xd7/* 0xd0-0xd7 */
  0xd80xd90xda0xdb0xdc0x000x000xdf/* 0xd8-0xdf */
  0xe00xe10xe20xe30xe40xe50xe60xe7/* 0xe0-0xe7 */
  0xe80xe90xea0xeb0xec0xed0xee0xef/* 0xe8-0xef */
  0x000xf10xf20xf30xf40xf50xf60xf7/* 0xf0-0xf7 */
  0xf80xf90xfa0xfb0xfc0x000x000xff/* 0xf8-0xff */
};
static const unsigned char iso8859_9_page01[72] = {
  0x000x000x000x000x000x000xd00xf0/* 0x18-0x1f */
  0x000x000x000x000x000x000x000x00/* 0x20-0x27 */
  0x000x000x000x000x000x000x000x00/* 0x28-0x2f */
  0xdd0xfd0x000x000x000x000x000x00/* 0x30-0x37 */
  0x000x000x000x000x000x000x000x00/* 0x38-0x3f */
  0x000x000x000x000x000x000x000x00/* 0x40-0x47 */
  0x000x000x000x000x000x000x000x00/* 0x48-0x4f */
  0x000x000x000x000x000x000x000x00/* 0x50-0x57 */
  0x000x000x000x000x000x000xde0xfe/* 0x58-0x5f */
};

static int
iso8859_9_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
{
  unsigned char c = 0;
  if (wc < 0x00d0) {
    *r = wc;
    return 1;
  }
  else if (wc >= 0x00d0 && wc < 0x0100)
    c = iso8859_9_page00[wc-0x00d0];
  else if (wc >= 0x0118 && wc < 0x0160)
    c = iso8859_9_page01[wc-0x0118];
  if (c != 0) {
    *r = c;
    return 1;
  }
  return RET_ILUNI;
}