Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Side by Side Diff: source/io/sscanf.c

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/io/sprintf.c ('k') | source/io/ucln_io.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ****************************************************************************** 2 ******************************************************************************
3 * 3 *
4 * Copyright (C) 2000-2004, International Business Machines 4 * Copyright (C) 2000-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 sscanf.c 9 * File sscanf.c
10 * 10 *
11 * Modification History: 11 * Modification History:
12 * 12 *
13 * Date Name Description 13 * Date Name Description
14 * 02/08/00 george Creation. Copied from uscanf.c 14 * 02/08/00 george Creation. Copied from uscanf.c
15 ****************************************************************************** 15 ******************************************************************************
16 */ 16 */
17 17
18 #include "unicode/utypes.h" 18 #include "unicode/utypes.h"
19 19
20 #if !UCONFIG_NO_FORMATTING 20 #if !UCONFIG_NO_FORMATTING && !UCONFIG_NO_CONVERSION
21 21
22 #include "unicode/putil.h" 22 #include "unicode/putil.h"
23 #include "unicode/ustdio.h" 23 #include "unicode/ustdio.h"
24 #include "unicode/ustring.h" 24 #include "unicode/ustring.h"
25 #include "uscanf.h" 25 #include "uscanf.h"
26 #include "ufile.h" 26 #include "ufile.h"
27 #include "ufmt_cmn.h" 27 #include "ufmt_cmn.h"
28 28
29 #include "cmemory.h" 29 #include "cmemory.h"
30 #include "cstring.h" 30 #include "cstring.h"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 converted = u_scanf_parse(&inStr, patternSpecification, ap); 119 converted = u_scanf_parse(&inStr, patternSpecification, ap);
120 120
121 u_locbund_close(&inStr.str.fBundle); 121 u_locbund_close(&inStr.str.fBundle);
122 122
123 /* return # of items converted */ 123 /* return # of items converted */
124 return converted; 124 return converted;
125 } 125 }
126 126
127 #endif /* #if !UCONFIG_NO_FORMATTING */ 127 #endif /* #if !UCONFIG_NO_FORMATTING */
128 128
OLDNEW
« no previous file with comments | « source/io/sprintf.c ('k') | source/io/ucln_io.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698