OLD | NEW |
1 /* | 1 /* |
2 ********************************************************************** | 2 ********************************************************************** |
3 * Copyright (C) 2002-2011, International Business Machines | 3 * Copyright (C) 2002-2011, International Business Machines |
4 * Corporation and others. All Rights Reserved. | 4 * Corporation and others. All Rights Reserved. |
5 ********************************************************************** | 5 ********************************************************************** |
6 * file name: ucnv_u7.c | 6 * file name: ucnv_u7.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: 2002jul01 | 11 * created on: 2002jul01 |
12 * created by: Markus W. Scherer | 12 * created by: Markus W. Scherer |
13 * | 13 * |
14 * UTF-7 converter implementation. Used to be in ucnv_utf.c. | 14 * UTF-7 converter implementation. Used to be in ucnv_utf.c. |
15 */ | 15 */ |
16 | 16 |
17 #include "unicode/utypes.h" | 17 #include "unicode/utypes.h" |
18 | 18 |
19 #if !UCONFIG_NO_CONVERSION && !UCONFIG_NO_NON_HTML5_CONVERSION | 19 #if !UCONFIG_NO_CONVERSION |
20 | 20 |
21 #include "unicode/ucnv.h" | 21 #include "unicode/ucnv.h" |
22 #include "ucnv_bld.h" | 22 #include "ucnv_bld.h" |
23 #include "ucnv_cnv.h" | 23 #include "ucnv_cnv.h" |
24 #include "uassert.h" | 24 #include "uassert.h" |
25 | 25 |
26 /* UTF-7 -------------------------------------------------------------------- */ | 26 /* UTF-7 -------------------------------------------------------------------- */ |
27 | 27 |
28 /* | 28 /* |
29 * UTF-7 is a stateful encoding of Unicode. | 29 * UTF-7 is a stateful encoding of Unicode. |
(...skipping 1445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1475 { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */ | 1475 { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } /* reserved */ |
1476 }; | 1476 }; |
1477 | 1477 |
1478 const UConverterSharedData _IMAPData={ | 1478 const UConverterSharedData _IMAPData={ |
1479 sizeof(UConverterSharedData), ~((uint32_t)0), | 1479 sizeof(UConverterSharedData), ~((uint32_t)0), |
1480 NULL, NULL, &_IMAPStaticData, FALSE, &_IMAPImpl, | 1480 NULL, NULL, &_IMAPStaticData, FALSE, &_IMAPImpl, |
1481 0 | 1481 0 |
1482 }; | 1482 }; |
1483 | 1483 |
1484 #endif | 1484 #endif |
OLD | NEW |