diff options
Diffstat (limited to 'localedata/tests-mbwc/dat_wcwidth.c')
-rw-r--r-- | localedata/tests-mbwc/dat_wcwidth.c | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/localedata/tests-mbwc/dat_wcwidth.c b/localedata/tests-mbwc/dat_wcwidth.c index 5472d1f559..993b0f6bc7 100644 --- a/localedata/tests-mbwc/dat_wcwidth.c +++ b/localedata/tests-mbwc/dat_wcwidth.c @@ -11,31 +11,31 @@ TST_WCWIDTH tst_wcwidth_loc [] = { { Twcwidth, TST_LOC_de }, { { /*inp*/ { 0x0000 }, /* #01 */ - /*exp*/ { 0,0, 1,0, }, + /*exp*/ { 0, 1,0, }, }, { /*inp*/ { 0x0020 }, /* #02 */ - /*exp*/ { 0,0, 1,1, }, + /*exp*/ { 0, 1,1, }, }, { /*inp*/ { 0x007F }, /* #03 */ - /*exp*/ { 0,0, 1,-1, }, + /*exp*/ { 0, 1,-1, }, }, { /*inp*/ { 0x0080 }, /* #04 */ - /*exp*/ { 0,0, 1,-1, }, + /*exp*/ { 0, 1,-1, }, }, { /*inp*/ { 0x00A1 }, /* #05 */ - /*exp*/ { 0,0, 1,1, }, + /*exp*/ { 0, 1,1, }, }, { /*inp*/ { 0x00C1 }, /* #06 */ - /*exp*/ { 0,0, 1,1, }, + /*exp*/ { 0, 1,1, }, }, #ifdef SHOJI_IS_RIGHT /* <WAIVER> */ /* CHECK : wint_t */ { /*inp*/ { 0x3041 }, /* #07 */ - /*exp*/ { 0,0, 1,0, }, + /*exp*/ { 0, 1,0, }, }, #else { /*inp*/ { 0x3041 }, /* #07 */ - /*exp*/ { 0,0, 1,EOF, }, + /*exp*/ { 0, 1,EOF, }, }, #endif { is_last: 1 } @@ -45,25 +45,25 @@ TST_WCWIDTH tst_wcwidth_loc [] = { { Twcwidth, TST_LOC_enUS }, { { /*inp*/ { 0x0000 }, /* #01 */ - /*exp*/ { 0,0, 1,0, }, + /*exp*/ { 0, 1,0, }, }, { /*inp*/ { 0x0020 }, /* #02 */ - /*exp*/ { 0,0, 1,1, }, + /*exp*/ { 0, 1,1, }, }, { /*inp*/ { 0x007F }, /* #03 */ - /*exp*/ { 0,0, 1,-1, }, + /*exp*/ { 0, 1,-1, }, }, { /*inp*/ { 0x0080 }, /* #04 */ - /*exp*/ { 0,0, 1,-1, }, + /*exp*/ { 0, 1,-1, }, }, { /*inp*/ { 0x00A1 }, /* #05 */ - /*exp*/ { 0,0, 1,-1, }, + /*exp*/ { 0, 1,-1, }, }, { /*inp*/ { 0x00C1 }, /* #06 */ - /*exp*/ { 0,0, 1,-1, }, + /*exp*/ { 0, 1,-1, }, }, { /*inp*/ { 0x3041 }, /* #07 */ - /*exp*/ { 0,0, 1,-1, }, + /*exp*/ { 0, 1,-1, }, }, { is_last: 1 } } @@ -72,34 +72,34 @@ TST_WCWIDTH tst_wcwidth_loc [] = { { Twcwidth, TST_LOC_eucJP }, { { /*inp*/ { 0x0000 }, /* #01 */ - /*exp*/ { 0,0, 1,0, }, + /*exp*/ { 0, 1,0, }, }, { /*inp*/ { 0x0020 }, /* #02 */ - /*exp*/ { 0,0, 1,1, }, + /*exp*/ { 0, 1,1, }, }, { /*inp*/ { 0x007F }, /* #03 */ - /*exp*/ { 0,0, 1,-1, }, + /*exp*/ { 0, 1,-1, }, }, { /*inp*/ { 0x0080 }, /* #04 */ - /*exp*/ { 0,0, 1,-1, }, + /*exp*/ { 0, 1,-1, }, }, #ifdef SHOJI_IS_RIGHT /* <NO_WAIVER> */ { /*inp*/ { 0x00A1 }, /* #05 */ - /*exp*/ { 0,0, 1,0, }, + /*exp*/ { 0, 1,0, }, }, #else /* XXX U00A1 is a valid character in EUC-JP. */ { /*inp*/ { 0x00A1 }, /* #05 */ - /*exp*/ { 0,0, 1,2, }, + /*exp*/ { 0, 1,2, }, }, #endif /* jisx0212 */ { /*inp*/ { 0x00C1 }, /* #06 */ - /*exp*/ { 0,0, 1,2, }, + /*exp*/ { 0, 1,2, }, }, { /*inp*/ { 0x3041 }, /* #07 */ - /*exp*/ { 0,0, 1,2, }, + /*exp*/ { 0, 1,2, }, }, { is_last: 1 } } |