Author: cwittich
Date: Sun Feb 16 05:42:42 2014
New Revision: 62202
URL:
http://svn.reactos.org/svn/reactos?rev=62202&view=rev
Log:
[crt]
fix swscanf winetest
Modified:
trunk/reactos/lib/sdk/crt/string/scanf.h
Modified: trunk/reactos/lib/sdk/crt/string/scanf.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/scanf.h…
==============================================================================
--- trunk/reactos/lib/sdk/crt/string/scanf.h [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/string/scanf.h [iso-8859-1] Sun Feb 16 05:42:42 2014
@@ -26,7 +26,7 @@
#ifdef WIDE_SCANF
#define _CHAR_ wchar_t
#define _EOF_ WEOF
-#define _EOF_RET WEOF
+#define _EOF_RET (short)WEOF
#define _ISSPACE_(c) iswspace(c)
#define _ISDIGIT_(c) iswdigit(c)
#define _WIDE2SUPPORTED_(c) c /* No conversion needed (wide to wide) */
@@ -88,8 +88,11 @@
#endif /* STRING */
#endif /* CONSOLE */
#endif /* WIDE_SCANF */
+
nch = _GETC_(file);
- if (nch == _EOF_) return _EOF_RET;
+ if (nch == _EOF_) {
+ return _EOF_RET;
+ }
while (*format) {
/* a whitespace character in the format string causes scanf to read,
@@ -248,11 +251,12 @@
/* skip initial whitespace */
while ((nch!=_EOF_) && _ISSPACE_(nch))
nch = _GETC_(file);
- /* get sign. */
+
+ /* get sign. */
if (nch == '-' || nch == '+') {
- negative = (nch=='-');
- if (width>0) width--;
- if (width==0) break;
+ negative = (nch=='-');
+ if (width>0) width--;
+ if (width==0) break;
nch = _GETC_(file);
}
/* get first digit. */
@@ -274,12 +278,12 @@
if (width!=0 && nch == '.') {
long double dec = 1;
nch = _GETC_(file);
- if (width>0) width--;
+ if (width>0) width--;
while (width!=0 && (nch!=_EOF_) &&
_ISDIGIT_(nch)) {
dec /= 10;
cur += dec * (nch - '0');
nch = _GETC_(file);
- if (width>0) width--;
+ if (width>0) width--;
}
}
/* handle exponent */
@@ -287,19 +291,19 @@
int exponent = 0, negexp = 0;
double expcnt, shift;
nch = _GETC_(file);
- if (width>0) width--;
+ if (width>0) width--;
/* possible sign on the exponent */
if (width!=0 && (nch=='+' || nch=='-')) {
negexp = (nch=='-');
nch = _GETC_(file);
- if (width>0) width--;
+ if (width>0) width--;
}
/* exponent digits */
while (width!=0 && (nch!=_EOF_) && _ISDIGIT_(nch)) {
exponent *= 10;
exponent += (nch - '0');
nch = _GETC_(file);
- if (width>0) width--;
+ if (width>0) width--;
}
/* update 'cur' with this exponent. */
expcnt = 10;
@@ -315,9 +319,9 @@
st = 1;
if (!suppress) {
if (L_prefix) _SET_NUMBER_(long double);
- else if (l_prefix) _SET_NUMBER_(double);
- else _SET_NUMBER_(float);
- }
+ else if (l_prefix) _SET_NUMBER_(double);
+ else _SET_NUMBER_(float);
+ }
}
break;
/* According to msdn,
@@ -494,9 +498,9 @@
/* terminate */
if (!suppress) *sptr = 0;
#ifdef _LIBCNT_
- RtlFreeHeap(RtlGetProcessHeap(), 0, Mask);
+ RtlFreeHeap(RtlGetProcessHeap(), 0, Mask);
#else
- HeapFree(GetProcessHeap(), 0, Mask);
+ HeapFree(GetProcessHeap(), 0, Mask);
#endif
}
break;