git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47789
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#else
int ret = vwscanf(format, argptr);
#endif
#else
int ret = vwscanf(format, argptr);
#endif
va_end(argptr);
return ret;
va_end(argptr);
return ret;
// ----------------------------------------------------------------------------
#ifndef wxCRT_GetenvW
// ----------------------------------------------------------------------------
#ifndef wxCRT_GetenvW
-wchar_t* WXDLLEXPORT wxCRT_GetenvW(const wchar_t *name)
+WXDLLEXPORT wchar_t* wxCRT_GetenvW(const wchar_t *name)
{
// NB: buffer returned by getenv() is allowed to be overwritten next
// time getenv() is called, so it is OK to use static string
{
// NB: buffer returned by getenv() is allowed to be overwritten next
// time getenv() is called, so it is OK to use static string
wxString::const_iterator end = wxstr.end();
// Skip spaces
wxString::const_iterator end = wxstr.end();
// Skip spaces
- while ( i != end && wxIsspace(*i) ) i++;
+ while ( i != end && wxIsspace(*i) ) ++i;
// Starts with sign?
*sign = wxT(' ');
// Starts with sign?
*sign = wxT(' ');
if ( c == wxT('+') || c == wxT('-') )
{
*sign = c;
if ( c == wxT('+') || c == wxT('-') )
{
*sign = c;
}
}
// Starts with 0x?
if ( i != end && *i == wxT('0') )
{
}
}
// Starts with 0x?
if ( i != end && *i == wxT('0') )
{
if ( i != end )
{
if ( *i == wxT('x') && (base == 16 || base == 0) )
{
base = 16;
if ( i != end )
{
if ( *i == wxT('x') && (base == 16 || base == 0) )
{
base = 16;
}
if ( base == 0 )
base = 10;
}
if ( base == 0 )
base = 10;
- for ( ; i != end; i++ )
+ for ( ; i != end; ++i )