| OLD | NEW |
| 1 /* | 1 /* |
| 2 ********************************************************************** | 2 ********************************************************************** |
| 3 * Copyright (C) 2000-2011, International Business Machines | 3 * Copyright (C) 2000-2011, International Business Machines |
| 4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
| 5 ********************************************************************** | 5 ********************************************************************** |
| 6 * file name: ucnv_lmb.cpp | 6 * file name: ucnv_lmb.cpp |
| 7 * encoding: US-ASCII | 7 * encoding: US-ASCII |
| 8 * tab size: 4 (not used) | 8 * tab size: 4 (not used) |
| 9 * indentation:4 | 9 * indentation:4 |
| 10 * | 10 * |
| 11 * created on: 2000feb09 | 11 * created on: 2000feb09 |
| 12 * created by: Brendan Murray | 12 * created by: Brendan Murray |
| 13 * extensively hacked up by: Jim Snyder-Grant | 13 * extensively hacked up by: Jim Snyder-Grant |
| 14 * | 14 * |
| 15 * Modification History: | 15 * Modification History: |
| 16 * | 16 * |
| 17 * Date Name Description | 17 * Date Name Description |
| 18 * | 18 * |
| 19 * 06/20/2000 helena OS/400 port changes; mostly typecast. | 19 * 06/20/2000 helena OS/400 port changes; mostly typecast. |
| 20 * 06/27/2000 Jim Snyder-Grant Deal with partial characters and small buffers. | 20 * 06/27/2000 Jim Snyder-Grant Deal with partial characters and small buffers. |
| 21 * Add comments to document LMBCS format and imple
mentation | 21 * Add comments to document LMBCS format and imple
mentation |
| 22 * restructured order & breakdown of functions | 22 * restructured order & breakdown of functions |
| 23 * 06/28/2000 helena Major rewrite for the callback API changes. | 23 * 06/28/2000 helena Major rewrite for the callback API changes. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "unicode/utypes.h" | 26 #include "unicode/utypes.h" |
| 27 | 27 |
| 28 #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION | 28 #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION && !UCONFIG_NO_NON_H
TML5_CONVERSION |
| 29 | 29 |
| 30 #include "unicode/ucnv_err.h" | 30 #include "unicode/ucnv_err.h" |
| 31 #include "unicode/ucnv.h" | 31 #include "unicode/ucnv.h" |
| 32 #include "unicode/uset.h" | 32 #include "unicode/uset.h" |
| 33 #include "cmemory.h" | 33 #include "cmemory.h" |
| 34 #include "cstring.h" | 34 #include "cstring.h" |
| 35 #include "uassert.h" | 35 #include "uassert.h" |
| 36 #include "ucnv_imp.h" | 36 #include "ucnv_imp.h" |
| 37 #include "ucnv_bld.h" | 37 #include "ucnv_bld.h" |
| 38 #include "ucnv_cnv.h" | 38 #include "ucnv_cnv.h" |
| (...skipping 1329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1368 DECLARE_LMBCS_DATA(5) | 1368 DECLARE_LMBCS_DATA(5) |
| 1369 DECLARE_LMBCS_DATA(6) | 1369 DECLARE_LMBCS_DATA(6) |
| 1370 DECLARE_LMBCS_DATA(8) | 1370 DECLARE_LMBCS_DATA(8) |
| 1371 DECLARE_LMBCS_DATA(11) | 1371 DECLARE_LMBCS_DATA(11) |
| 1372 DECLARE_LMBCS_DATA(16) | 1372 DECLARE_LMBCS_DATA(16) |
| 1373 DECLARE_LMBCS_DATA(17) | 1373 DECLARE_LMBCS_DATA(17) |
| 1374 DECLARE_LMBCS_DATA(18) | 1374 DECLARE_LMBCS_DATA(18) |
| 1375 DECLARE_LMBCS_DATA(19) | 1375 DECLARE_LMBCS_DATA(19) |
| 1376 | 1376 |
| 1377 #endif /* #if !UCONFIG_NO_LEGACY_CONVERSION */ | 1377 #endif /* #if !UCONFIG_NO_LEGACY_CONVERSION */ |
| OLD | NEW |