OSDN Git Service

* nkf.c(show_configuration): fix indent.
[nkf/nkf.git] / utf8tbl.h
1 #ifndef _UTF8TBL_H_
2 #define _UTF8TBL_H_
3
4 #ifdef UTF8_OUTPUT_ENABLE
5 extern const unsigned short euc_to_utf8_1byte[];
6 extern const unsigned short *const euc_to_utf8_2bytes[];
7 extern const unsigned short *const euc_to_utf8_2bytes_ms[];
8 extern const unsigned short *const euc_to_utf8_2bytes_mac[];
9 extern const unsigned short *const x0212_to_utf8_2bytes[];
10 #endif /* UTF8_OUTPUT_ENABLE */
11
12 #ifdef UTF8_INPUT_ENABLE
13 extern const unsigned short *const utf8_to_euc_2bytes[];
14 extern const unsigned short *const utf8_to_euc_2bytes_ms[];
15 extern const unsigned short *const utf8_to_euc_2bytes_932[];
16 extern const unsigned short *const utf8_to_euc_2bytes_mac[];
17 extern const unsigned short *const *const utf8_to_euc_3bytes[];
18 extern const unsigned short *const *const utf8_to_euc_3bytes_ms[];
19 extern const unsigned short *const *const utf8_to_euc_3bytes_932[];
20 extern const unsigned short *const *const utf8_to_euc_3bytes_mac[];
21 #endif /* UTF8_INPUT_ENABLE */
22
23 #ifdef UNICODE_NORMALIZATION
24 extern const struct normalization_pair normalization_table[];
25 #endif
26
27 #ifdef SHIFTJIS_CP932
28 extern const unsigned short shiftjis_cp932[3][189];
29 extern const unsigned short cp932inv[2][189];
30 #endif /* SHIFTJIS_CP932 */
31
32 #ifdef X0212_ENABLE
33 extern const unsigned short shiftjis_x0212[3][189];
34 extern const unsigned short *const x0212_shiftjis[];
35 #endif /* X0212_ENABLE */
36
37 #endif