]> arthur.barton.de Git - netatalk.git/blob - libatalk/unicode/charsets/generic_cjk.h
5dab15a6284a6ce323a245594a9498e90e2b2ebf
[netatalk.git] / libatalk / unicode / charsets / generic_cjk.h
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
27 typedef struct {
28   uint16_t range[2];
29   const uint16_t (*summary)[2];
30 } cjk_index_t;
31
32 extern size_t cjk_generic_push (size_t (*)(uint8_t*, const ucs2_t*, size_t*),
33                                    void*, char**, size_t*, char**, size_t*);
34 extern size_t cjk_generic_pull (size_t (*)(ucs2_t*, const uint8_t*, size_t*),
35                                    void*, char**, size_t*, char**, size_t*);
36
37 extern size_t cjk_char_push (uint16_t, uint8_t*);
38 extern size_t cjk_char_pull (ucs2_t, ucs2_t*, const uint32_t*);
39
40 extern uint16_t cjk_lookup (uint16_t, const cjk_index_t*, const uint16_t*);
41 extern ucs2_t cjk_compose (ucs2_t, ucs2_t, const uint32_t*, size_t);
42 extern ucs2_t cjk_compose_seq (const ucs2_t*, size_t*, const uint32_t*, size_t);