OLD | NEW |
1 /* | 1 /* |
2 ****************************************************************************** | 2 ****************************************************************************** |
3 * | 3 * |
4 * Copyright (C) 1998-2004, 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 uscanf.c | 9 * File uscanf.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/putil.h" | 23 #include "unicode/putil.h" |
24 #include "unicode/ustdio.h" | 24 #include "unicode/ustdio.h" |
25 #include "unicode/ustring.h" | 25 #include "unicode/ustring.h" |
26 #include "uscanf.h" | 26 #include "uscanf.h" |
27 #include "ufile.h" | 27 #include "ufile.h" |
28 #include "ufmt_cmn.h" | 28 #include "ufmt_cmn.h" |
29 | 29 |
30 #include "cmemory.h" | 30 #include "cmemory.h" |
31 #include "cstring.h" | 31 #include "cstring.h" |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 U_CAPI int32_t U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 200
1 */ | 97 U_CAPI int32_t U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 200
1 */ |
98 u_vfscanf_u(UFILE *f, | 98 u_vfscanf_u(UFILE *f, |
99 const UChar *patternSpecification, | 99 const UChar *patternSpecification, |
100 va_list ap) | 100 va_list ap) |
101 { | 101 { |
102 return u_scanf_parse(f, patternSpecification, ap); | 102 return u_scanf_parse(f, patternSpecification, ap); |
103 } | 103 } |
104 | 104 |
105 #endif /* #if !UCONFIG_NO_FORMATTING */ | 105 #endif /* #if !UCONFIG_NO_FORMATTING */ |
106 | 106 |
OLD | NEW |