| OLD | NEW |
| 1 /* | 1 /* |
| 2 ********************************************************************** | 2 ********************************************************************** |
| 3 * Copyright (C) 2000-2014, International Business Machines | 3 * Copyright (C) 2000-2015, International Business Machines |
| 4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
| 5 ********************************************************************** | 5 ********************************************************************** |
| 6 * file name: ucnvhz.c | 6 * file name: ucnvhz.c |
| 7 * encoding: US-ASCII | 7 * encoding: US-ASCII |
| 8 * tab size: 8 (not used) | 8 * tab size: 8 (not used) |
| 9 * indentation:4 | 9 * indentation:4 |
| 10 * | 10 * |
| 11 * created on: 2000oct16 | 11 * created on: 2000oct16 |
| 12 * created by: Ram Viswanadha | 12 * created by: Ram Viswanadha |
| 13 * 10/31/2000 Ram Implemented offsets logic function | 13 * 10/31/2000 Ram Implemented offsets logic function |
| 14 * | 14 * |
| 15 */ | 15 */ |
| 16 | 16 |
| 17 #include "unicode/utypes.h" | 17 #include "unicode/utypes.h" |
| 18 | 18 |
| 19 #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION && !UCONFIG_NO_NON_H
TML5_CONVERSION | 19 #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION && !UCONFIG_ONLY_HTM
L_CONVERSION |
| 20 | 20 |
| 21 #include "cmemory.h" | 21 #include "cmemory.h" |
| 22 #include "unicode/ucnv.h" | 22 #include "unicode/ucnv.h" |
| 23 #include "unicode/ucnv_cb.h" | 23 #include "unicode/ucnv_cb.h" |
| 24 #include "unicode/uset.h" | 24 #include "unicode/uset.h" |
| 25 #include "unicode/utf16.h" | 25 #include "unicode/utf16.h" |
| 26 #include "ucnv_bld.h" | 26 #include "ucnv_bld.h" |
| 27 #include "ucnv_cnv.h" | 27 #include "ucnv_cnv.h" |
| 28 #include "ucnv_imp.h" | 28 #include "ucnv_imp.h" |
| 29 | 29 |
| (...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 FALSE, | 619 FALSE, |
| 620 0, | 620 0, |
| 621 0, | 621 0, |
| 622 { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 }, /* reserved */ | 622 { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 }, /* reserved */ |
| 623 | 623 |
| 624 }; | 624 }; |
| 625 | 625 |
| 626 const UConverterSharedData _HZData= | 626 const UConverterSharedData _HZData= |
| 627 UCNV_IMMUTABLE_SHARED_DATA_INITIALIZER(&_HZStaticData, &_HZImpl); | 627 UCNV_IMMUTABLE_SHARED_DATA_INITIALIZER(&_HZStaticData, &_HZImpl); |
| 628 | 628 |
| 629 #endif /* #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION && !UCONFI
G_NO_NON_HTML5_CONVERSION */ | 629 #endif /* #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION && !UCONFI
G_ONLY_HTML_CONVERSION */ |
| OLD | NEW |