OLD | NEW |
1 /* | 1 /* |
2 ******************************************************************************* | 2 ******************************************************************************* |
3 * | 3 * |
4 * Copyright (C) 1998-2011, International Business Machines | 4 * Copyright (C) 1998-2014, International Business Machines |
5 * Corporation and others. All Rights Reserved. | 5 * Corporation and others. All Rights Reserved. |
6 * | 6 * |
7 ******************************************************************************* | 7 ******************************************************************************* |
8 * | 8 * |
9 * File uscnnf_p.c | 9 * File uscnnf_p.c |
10 * | 10 * |
11 * Modification History: | 11 * Modification History: |
12 * | 12 * |
13 * Date Name Description | 13 * Date Name Description |
14 * 12/02/98 stephen Creation. | 14 * 12/02/98 stephen Creation. |
15 * 03/13/99 stephen Modified for new C API. | 15 * 03/13/99 stephen Modified for new C API. |
16 ******************************************************************************* | 16 ******************************************************************************* |
17 */ | 17 */ |
18 | 18 |
19 #include "unicode/utypes.h" | 19 #include "unicode/utypes.h" |
20 | 20 |
21 #if !UCONFIG_NO_FORMATTING | 21 #if !UCONFIG_NO_FORMATTING && !UCONFIG_NO_CONVERSION |
22 | 22 |
23 #include "unicode/uchar.h" | 23 #include "unicode/uchar.h" |
24 #include "unicode/ustring.h" | 24 #include "unicode/ustring.h" |
25 #include "unicode/unum.h" | 25 #include "unicode/unum.h" |
26 #include "unicode/udat.h" | 26 #include "unicode/udat.h" |
27 #include "unicode/uset.h" | 27 #include "unicode/uset.h" |
28 #include "uscanf.h" | 28 #include "uscanf.h" |
29 #include "ufmt_cmn.h" | 29 #include "ufmt_cmn.h" |
30 #include "ufile.h" | 30 #include "ufile.h" |
31 #include "locbund.h" | 31 #include "locbund.h" |
(...skipping 1365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1397 /* else do nothing */ | 1397 /* else do nothing */ |
1398 | 1398 |
1399 /* just ignore unknown tags */ | 1399 /* just ignore unknown tags */ |
1400 } | 1400 } |
1401 | 1401 |
1402 /* return # of items converted */ | 1402 /* return # of items converted */ |
1403 return converted; | 1403 return converted; |
1404 } | 1404 } |
1405 | 1405 |
1406 #endif /* #if !UCONFIG_NO_FORMATTING */ | 1406 #endif /* #if !UCONFIG_NO_FORMATTING */ |
OLD | NEW |