summaryrefslogtreecommitdiff
path: root/jni/iconv/lib/riscos1.h
blob: 2ebc7513419894c0cf775b796990463cb1fc5bdf (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
86
87
88
89
90
91
92
93
94
95
96
/*
 * Copyright (C) 1999-2002 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.
 */

/*
 * RISCOS-LATIN1
 */

static const unsigned short riscos1_2uni[32] = {
  /* 0x80 */
  0x221a0x01740x01750x00830x25730x01760x01770x0087,
  0x21e60x21e80x21e90x21e70x20260x21220x20300x2022,
  /* 0x90 */
  0x20180x20190x20390x203a0x201c0x201d0x201e0x2013,
  0x20140x22120x01520x01530x20200x20210xfb010xfb02,
};

static int
riscos1_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, int n)
{
  unsigned char c = *s;
  if (c >= 0x80 && c < 0xa0)
    *pwc = (ucs4_t) riscos1_2uni[c-0x80];
  else
    *pwc = (ucs4_t) c;
  return 1;
}

static const unsigned char riscos1_page01[40] = {
  0x000x000x9a0x9b0x000x000x000x00/* 0x50-0x57 */
  0x000x000x000x000x000x000x000x00/* 0x58-0x5f */
  0x000x000x000x000x000x000x000x00/* 0x60-0x67 */
  0x000x000x000x000x000x000x000x00/* 0x68-0x6f */
  0x000x000x000x000x810x820x850x86/* 0x70-0x77 */
};
static const unsigned char riscos1_page20[48] = {
  0x000x000x000x970x980x000x000x00/* 0x10-0x17 */
  0x900x910x000x000x940x950x960x00/* 0x18-0x1f */
  0x9c0x9d0x8f0x000x000x000x8c0x00/* 0x20-0x27 */
  0x000x000x000x000x000x000x000x00/* 0x28-0x2f */
  0x8e0x000x000x000x000x000x000x00/* 0x30-0x37 */
  0x000x920x930x000x000x000x000x00/* 0x38-0x3f */
};
static const unsigned char riscos1_page21[16] = {
  0x000x000x000x000x000x000x880x8b/* 0xe0-0xe7 */
  0x890x8a0x000x000x000x000x000x00/* 0xe8-0xef */
};
static const unsigned char riscos1_page22[16] = {
  0x000x000x990x000x000x000x000x00/* 0x10-0x17 */
  0x000x000x800x000x000x000x000x00/* 0x18-0x1f */
};

static int
riscos1_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
{
  unsigned char c = 0;
  if (wc < 0x0080 || wc == 0x0083 || wc == 0x0087 || (wc >= 0x00a0 && wc < 0x0100)) {
    *r = wc;
    return 1;
  }
  else if (wc >= 0x0150 && wc < 0x0178)
    c = riscos1_page01[wc-0x0150];
  else if (wc >= 0x2010 && wc < 0x2040)
    c = riscos1_page20[wc-0x2010];
  else if (wc == 0x2122)
    c = 0x8d;
  else if (wc >= 0x21e0 && wc < 0x21f0)
    c = riscos1_page21[wc-0x21e0];
  else if (wc >= 0x2210 && wc < 0x2220)
    c = riscos1_page22[wc-0x2210];
  else if (wc == 0x2573)
    c = 0x84;
  else if (wc >= 0xfb01 && wc < 0xfb03)
    c = wc-0xfa63;
  if (c != 0) {
    *r = c;
    return 1;
  }
  return RET_ILUNI;
}