ICU-3969 swap ucase.icu

X-SVN-Rev: 16261
This commit is contained in:
Markus Scherer 2004-09-06 16:02:27 +00:00
parent f9bf55cf9e
commit 44415c556a
2 changed files with 8 additions and 1 deletions

View File

@ -44,6 +44,7 @@
#include "uresdata.h"
#include "ucnv_io.h"
#include "uprops.h"
#include "ucase.h"
#include "ucol_swp.h"
#include "ucnv_bld.h"
#include "unormimp.h"
@ -1083,7 +1084,8 @@ static const struct {
#if !UCONFIG_NO_NORMALIZATION
{"unorm", "icu", unorm_swap},
#endif
{"uprops", "icu", uprops_swap}
{"uprops", "icu", uprops_swap},
{"ucase", "icu", ucase_swap}
};
#define SWAP_BUFFER_SIZE 1000000

View File

@ -40,6 +40,7 @@
#include "uresdata.h"
#include "ucnv_io.h"
#include "uprops.h"
#include "ucase.h"
#include "ucol_swp.h"
#include "ucnv_bld.h"
#include "unormimp.h"
@ -307,6 +308,10 @@ static const struct {
#endif
/* insert data formats here, descending by expected frequency of occurrence */
{ { 0x55, 0x50, 0x72, 0x6f }, uprops_swap }, /* dataFormat="UPro" */
{ { UCASE_FMT_0, UCASE_FMT_1, UCASE_FMT_2, UCASE_FMT_3 },
ucase_swap }, /* dataFormat="cAsE" */
#if !UCONFIG_NO_NORMALIZATION
{ { 0x4e, 0x6f, 0x72, 0x6d }, unorm_swap }, /* dataFormat="Norm" */
#endif