• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/unicode/charsets/
1/*
2 * generic_cjk
3 * Copyright (C) TSUBAKIMOTO Hiroya <zorac@4000do.co.jp> 2004
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20#include <atalk/unicode.h>
21#include <iconv.h>
22#include "../byteorder.h"
23
24#define CJK_PUSH_BUFFER 4
25#define CJK_PULL_BUFFER 8
26
27typedef struct {
28  u_int16_t range[2];
29  const u_int16_t (*summary)[2];
30} cjk_index_t;
31
32extern size_t cjk_generic_push (size_t (*)(u_int8_t*, const ucs2_t*, size_t*),
33				   void*, char**, size_t*, char**, size_t*);
34extern size_t cjk_generic_pull (size_t (*)(ucs2_t*, const u_int8_t*, size_t*),
35				   void*, char**, size_t*, char**, size_t*);
36
37extern size_t cjk_char_push (u_int16_t, u_int8_t*);
38extern size_t cjk_char_pull (ucs2_t, ucs2_t*, const u_int32_t*);
39
40extern u_int16_t cjk_lookup (u_int16_t, const cjk_index_t*, const u_int16_t*);
41extern ucs2_t cjk_compose (ucs2_t, ucs2_t, const u_int32_t*, size_t);
42extern ucs2_t cjk_compose_seq (const ucs2_t*, size_t*, const u_int32_t*, size_t);
43