mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-16 10:17:23 +00:00
ICU-8972 norm2/nf[k]c.txt files generated by preparseucd.py
X-SVN-Rev: 31175
This commit is contained in:
parent
72559ba1cd
commit
2f5489adb1
5 changed files with 10 additions and 7 deletions
|
@ -3,8 +3,10 @@
|
|||
#
|
||||
# file name: nfc.txt
|
||||
#
|
||||
# machine-generated on: 2011-12-05
|
||||
# machine-generated by ICU preparseucd.py
|
||||
#
|
||||
# Complete data for Unicode NFC normalization.
|
||||
# Unicode 6.1.0
|
||||
|
||||
# Canonical_Combining_Class (ccc) values
|
||||
0300..0314:230
|
||||
|
|
|
@ -3,8 +3,10 @@
|
|||
#
|
||||
# file name: nfkc.txt
|
||||
#
|
||||
# machine-generated on: 2011-12-05
|
||||
# machine-generated by ICU preparseucd.py
|
||||
#
|
||||
# Complete data for Unicode NFKC normalization.
|
||||
# Unicode 6.1.0
|
||||
|
||||
# Canonical_Combining_Class (ccc) values
|
||||
0300..0314:230
|
||||
|
|
|
@ -15,7 +15,6 @@ property;Catalog;blk;Block
|
|||
property;String;bmg;Bidi_Mirroring_Glyph
|
||||
property;Binary;Cased;Cased
|
||||
property;Enumerated;ccc;Canonical_Combining_Class
|
||||
property;Binary;CE;Composition_Exclusion
|
||||
property;String;cf;Case_Folding
|
||||
property;Binary;CI;Case_Ignorable
|
||||
property;Binary;Comp_Ex;Full_Composition_Exclusion
|
||||
|
|
|
@ -99,16 +99,16 @@ usrc_createFromGenerator(const char *path, const char *filename, const char *gen
|
|||
}
|
||||
|
||||
U_CAPI FILE * U_EXPORT2
|
||||
usrc_createTextData(const char *path, const char *filename) {
|
||||
usrc_createTextData(const char *path, const char *filename, const char *generator) {
|
||||
const char *header=
|
||||
"# Copyright (C) 1999-%s, International Business Machines\n"
|
||||
"# Corporation and others. All Rights Reserved.\n"
|
||||
"#\n"
|
||||
"# file name: %s\n"
|
||||
"#\n"
|
||||
"# machine-generated on: %s\n"
|
||||
"# machine-generated by: %s\n"
|
||||
"#\n\n";
|
||||
return usrc_createWithHeader(path, filename, NULL, header);
|
||||
return usrc_createWithHeader(path, filename, generator, header);
|
||||
}
|
||||
|
||||
U_CAPI void U_EXPORT2
|
||||
|
|
|
@ -42,7 +42,7 @@ usrc_createFromGenerator(const char *path, const char *filename, const char *gen
|
|||
* Writes the comment with # lines, as used in scripts and text data.
|
||||
*/
|
||||
U_CAPI FILE * U_EXPORT2
|
||||
usrc_createTextData(const char *path, const char *filename);
|
||||
usrc_createTextData(const char *path, const char *filename, const char *generator);
|
||||
|
||||
/**
|
||||
* Writes the contents of an array of 8/16/32-bit words.
|
||||
|
|
Loading…
Add table
Reference in a new issue