Sort UTF8 entities
[metze/wireshark/wip.git] / wsutil / utf8_entities.h
1 /* utf8_entities.h
2  * Byte sequences for various UTF-8 entities
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23
24 #ifndef __UTF8_ENTITIES_H__
25 #define __UTF8_ENTITIES_H__
26
27 /*
28  * Sequences can be found at
29  * http://www.fileformat.info/info/unicode/
30  * http://www.utf8-chartable.de/
31  * and other places
32  */
33
34 #define UTF8_DEGREE_SIGN                    "\xc2\xb0"      /*   176 /   0xb0 */
35 #define UTF8_MICRO_SIGN                     "\xc2\xb5"      /*   181 /   0xb5 */
36 #define UTF8_MIDDLE_DOT                     "\xc2\xb7"      /*   183 /   0xb7 */
37
38 #define UTF8_BULLET                     "\xe2\x80\xa2"      /*  8226 / 0x2024 */
39 #define UTF8_EM_DASH                    "\xe2\x80\x94"      /*  8212 / 0x2014 */
40 #define UTF8_HORIZONTAL_ELLIPSIS        "\xe2\x80\xa6"      /*  8230 / 0x2026 */
41
42 #define UTF8_LEFTWARDS_ARROW            "\xe2\x86\x90"      /*  8592 / 0x2190 */
43 #define UTF8_RIGHTWARDS_ARROW           "\xe2\x86\x92"      /*  8594 / 0x2192 */
44 #define UTF8_LEFT_RIGHT_ARROW           "\xe2\x86\x94"      /*  8596 / 0x2194 */
45
46 #define UTF8_PLACE_OF_INTEREST_SIGN     "\xe2\x8c\x98"      /*  8984 / 0x2318 */
47
48 #define UTF8_CHECK_MARK                 "\xe2\x9c\x93"      /* 10003 / 0x2713 */
49 #define UTF8_BALLOT_X                   "\xe2\x9c\x97"      /* 10007 / 0x2717 */
50 #define UTF8_LONG_RIGHTWARDS_ARROW      "\xe2\x9f\xb6"      /* 10230 / 0x27f6 */
51
52 #endif /* __UTF8_ENTITIES_H__ */
53
54 /*
55  * Editor modelines
56  *
57  * Local Variables:
58  * c-basic-offset: 4
59  * tab-width: 8
60  * indent-tabs-mode: nil
61  * End:
62  *
63  * ex: set shiftwidth=4 tabstop=8 expandtab
64  * :indentSize=4:tabSize=8:noTabs=true:
65  */