]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /* |
2 | ******************************************************************************* | |
3 | * | |
4 | * Copyright (C) 2000, International Business Machines | |
5 | * Corporation and others. All Rights Reserved. | |
6 | * | |
7 | ******************************************************************************* | |
8 | * file name: canonucm.c | |
9 | * encoding: US-ASCII | |
10 | * tab size: 8 (not used) | |
11 | * indentation:4 | |
12 | * | |
13 | * created on: 2000nov08 | |
14 | * created by: Markus W. Scherer | |
15 | * | |
16 | * This tool reads a .ucm file and canonicalizes it: In the CHARMAP section, | |
17 | * - sort by Unicode code points | |
18 | * - print all code points in uppercase hexadecimal | |
19 | * - print all Unicode code points with 4, 5, or 6 digits as needed | |
20 | * - remove the comments | |
21 | * - remove unnecessary spaces | |
22 | * | |
23 | * To compile, just call a C compiler/linker with this source file. | |
24 | * On Windows: cl canonucm.c | |
25 | */ | |
26 | ||
27 | #error File moved to charset/source/ucmtools/ on 2002-nov-06 | |
28 | ||
29 | /* see http://oss.software.ibm.com/cvs/icu/charset/source/ucmtools/ */ |