diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2004-05-07 01:13:29 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2004-05-07 01:13:29 -0400 |
commit | d326f24d169154673717129098ff4554a673f178 (patch) | |
tree | 7229f817b10bcdb82f8df2b6af3a3acc792a762d /src/chrtrans/caselower.h | |
parent | 2cd8e80bfe2792ce8999a26b34384598f58e3889 (diff) | |
download | lynx-snapshots-d326f24d169154673717129098ff4554a673f178.tar.gz |
snapshot of project "lynx", label v2-8-6dev_3
Diffstat (limited to 'src/chrtrans/caselower.h')
-rw-r--r-- | src/chrtrans/caselower.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/chrtrans/caselower.h b/src/chrtrans/caselower.h index 842d6af8..4953162c 100644 --- a/src/chrtrans/caselower.h +++ b/src/chrtrans/caselower.h @@ -3,16 +3,14 @@ This table is generated from Unicode Character Database, Version 2.1.5 available from ftp.unicode.org, and looks as natural way to get case mapping - equivalents for unicodes. (well, too much characters the cost of 3 Kb only). + equivalents for unicodes. (well, too much characters the cost of 3 Kb only). Few words from the original README.txt quoted: - UNICODE 2.1 CHARACTER DATABASE Copyright (c) 1991-1998 Unicode, Inc. All Rights reserved. - CASE MAPPINGS The case mapping is an informative, default mapping. Certain languages, such @@ -21,14 +19,15 @@ default mappings listed in the Unicode Character Database. */ -#include <UCkd.h> /* typedef u16 */ +#include <UCkd.h> /* typedef u16 */ typedef struct { - u16 upper; - u16 lower; + u16 upper; + u16 lower; } unipair; static const unipair unicode_to_lower_case[] = +/* *INDENT-OFF* */ { {0x0041, 0x0061}, /* LATIN CAPITAL LETTER A */ {0x0042, 0x0062}, /* LATIN CAPITAL LETTER B */ @@ -736,3 +735,4 @@ static const unipair unicode_to_lower_case[] = {0xFF39, 0xFF59}, /* FULLWIDTH LATIN CAPITAL LETTER Y */ {0xFF3A, 0xFF5A} /* FULLWIDTH LATIN CAPITAL LETTER Z */ }; +/* *INDENT-ON* */ |