FreeCalypso > hg > freecalypso-tools
comparison uptools/libcoding/gsm7_encode_table.c @ 355:8fee530f7850
uptools/libcoding: implemented 8859-1 -> GSM7 encoding table
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 06 Feb 2018 19:27:19 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
354:ec0d6d58e043 | 355:8fee530f7850 |
---|---|
1 /* | |
2 * This library module contains the table for encoding from ISO 8859-1 | |
3 * into the GSM 7-bit default alphabet (03.38 or 23.038). High bit set | |
4 * in the output indicates escape encoding, used for ASCII characters | |
5 * [\]^ and {|}~. 0xFF indicates invalid chars. | |
6 */ | |
7 | |
8 #include <sys/types.h> | |
9 | |
10 u_char gsm7_encode_table[256] = { | |
11 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, /* 0x00 */ | |
12 0xFF, 0xFF, '\n', 0xFF, 0xFF, '\r', 0xFF, 0xFF, | |
13 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, /* 0x10 */ | |
14 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, | |
15 ' ', '!', '"', '#', 0x02, '%', '&', 0x27, /* 0x20 */ | |
16 '(', ')', '*', '+', ',', '-', '.', '/', | |
17 '0', '1', '2', '3', '4', '5', '6', '7', /* 0x30 */ | |
18 '8', '9', ':', ';', '<', '=', '>', '?', | |
19 0x00, 'A', 'B', 'C', 'D', 'E', 'F', 'G', /* 0x40 */ | |
20 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', | |
21 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', /* 0x50 */ | |
22 'X', 'Y', 'Z', 0xBC, 0xAF, 0xBE, 0x94, 0x11, | |
23 0xFF, 'a', 'b', 'c', 'd', 'e', 'f', 'g', /* 0x60 */ | |
24 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', | |
25 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', /* 0x70 */ | |
26 'x', 'y', 'z', 0xA8, 0xC0, 0xA9, 0xBD, 0xFF, | |
27 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, /* 0x80 */ | |
28 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, | |
29 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, /* 0x90 */ | |
30 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, | |
31 0xFF, 0x40, 0xFF, 0x01, 0x24, 0x03, 0xFF, 0x5F, /* 0xA0 */ | |
32 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, | |
33 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, /* 0xB0 */ | |
34 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x60, | |
35 0xFF, 0xFF, 0xFF, 0xFF, 0x5B, 0x0E, 0x1C, 0x09, /* 0xC0 */ | |
36 0xFF, 0x1F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, | |
37 0xFF, 0x5D, 0xFF, 0xFF, 0xFF, 0xFF, 0x5C, 0xFF, /* 0xD0 */ | |
38 0x0B, 0xFF, 0xFF, 0xFF, 0x5E, 0xFF, 0xFF, 0x1E, | |
39 0x7F, 0xFF, 0xFF, 0xFF, 0x7B, 0x0F, 0x1D, 0xFF, /* 0xE0 */ | |
40 0x04, 0x05, 0xFF, 0xFF, 0x07, 0xFF, 0xFF, 0xFF, | |
41 0xFF, 0x7D, 0x08, 0xFF, 0xFF, 0xFF, 0x7C, 0xFF, /* 0xF0 */ | |
42 0x0C, 0x06, 0xFF, 0xFF, 0x7E, 0xFF, 0xFF, 0xFF | |
43 }; |