+// ===========================================================================
+// headers, declarations, constants
+// ===========================================================================
+
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+ #pragma hdrstop
+#endif
+
+#define _ISOC9X_SOURCE 1 // to get vsscanf()
+#define _BSD_SOURCE 1 // to still get strdup()
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#ifndef __WXWINCE__
+ #include <time.h>
+ #include <locale.h>
+#else
+ #include "wx/msw/wince/time.h"
+#endif
+
+#ifndef WX_PRECOMP
+ #include "wx/wxchar.h"
+ #include "wx/string.h"
+ #include "wx/hash.h"
+#endif
+ #include "wx/utils.h" // for wxMin and wxMax
+
+#if defined(__WIN32__) && defined(wxNEED_WX_CTYPE_H)
+ #include <windef.h>
+ #include <winbase.h>
+ #include <winnls.h>
+ #include <winnt.h>
+#endif
+
+#if defined(__MWERKS__) && __MSL__ >= 0x6000
+namespace std {}
+using namespace std ;
+#endif
+
+#if wxUSE_WCHAR_T
+size_t WXDLLEXPORT wxMB2WC(wchar_t *buf, const char *psz, size_t n)
+{
+ // assume that we have mbsrtowcs() too if we have wcsrtombs()
+#ifdef HAVE_WCSRTOMBS
+ mbstate_t mbstate;
+ memset(&mbstate, 0, sizeof(mbstate_t));
+#endif
+
+ if (buf) {
+ if (!n || !*psz) {
+ if (n) *buf = wxT('\0');
+ return 0;
+ }
+#ifdef HAVE_WCSRTOMBS
+ return mbsrtowcs(buf, &psz, n, &mbstate);
+#else
+ return wxMbstowcs(buf, psz, n);
+#endif
+ }
+
+ // note that we rely on common (and required by Unix98 but unfortunately not
+ // C99) extension which allows to call mbs(r)towcs() with NULL output pointer
+ // to just get the size of the needed buffer -- this is needed as otherwise
+ // we have no idea about how much space we need and if the CRT doesn't
+ // support it (the only currently known example being Metrowerks, see
+ // wx/wxchar.h) we don't use its mbstowcs() at all
+#ifdef HAVE_WCSRTOMBS
+ return mbsrtowcs((wchar_t *) NULL, &psz, 0, &mbstate);
+#else
+ return wxMbstowcs((wchar_t *) NULL, psz, 0);
+#endif
+}
+
+size_t WXDLLEXPORT wxWC2MB(char *buf, const wchar_t *pwz, size_t n)
+{
+#ifdef HAVE_WCSRTOMBS
+ mbstate_t mbstate;
+ memset(&mbstate, 0, sizeof(mbstate_t));
+#endif
+
+ if (buf) {
+ if (!n || !*pwz) {
+ // glibc2.1 chokes on null input
+ if (n) *buf = '\0';
+ return 0;
+ }
+#ifdef HAVE_WCSRTOMBS
+ return wcsrtombs(buf, &pwz, n, &mbstate);
+#else
+ return wxWcstombs(buf, pwz, n);
+#endif
+ }
+
+#ifdef HAVE_WCSRTOMBS
+ return wcsrtombs((char *) NULL, &pwz, 0, &mbstate);
+#else
+ return wxWcstombs((char *) NULL, pwz, 0);
+#endif
+}
+#endif // wxUSE_WCHAR_T
+
+bool WXDLLEXPORT wxOKlibc()
+{
+#if wxUSE_WCHAR_T && defined(__UNIX__) && defined(__GLIBC__) && !defined(__WINE__)
+ // glibc 2.0 uses UTF-8 even when it shouldn't
+ wchar_t res = 0;
+ if ((MB_CUR_MAX == 2) &&
+ (wxMB2WC(&res, "\xdd\xa5", 1) == 1) &&
+ (res==0x765)) {
+ // this is UTF-8 allright, check whether that's what we want
+ char *cur_locale = setlocale(LC_CTYPE, NULL);
+ if ((strlen(cur_locale) < 4) ||
+ (strcasecmp(cur_locale + strlen(cur_locale) - 4, "utf8")) ||
+ (strcasecmp(cur_locale + strlen(cur_locale) - 5, "utf-8"))) {
+ // nope, don't use libc conversion
+ return false;
+ }
+ }
+#endif
+ return true;
+}
+
+// ============================================================================
+// printf() functions business
+// ============================================================================
+
+// special test mode: define all functions below even if we don't really need
+// them to be able to test them
+#ifdef wxTEST_PRINTF
+ #undef wxFprintf
+ #undef wxPrintf
+ #undef wxSprintf
+ #undef wxVfprintf
+ #undef wxVsprintf
+ #undef wxVprintf
+ #undef wxVsnprintf_
+ #undef wxSnprintf_
+
+ #define wxNEED_WPRINTF
+
+ int wxVfprintf( FILE *stream, const wxChar *format, va_list argptr );
+#endif
+
+// ----------------------------------------------------------------------------
+// implement [v]snprintf() if the system doesn't provide a safe one
+// or if the system's one does not support positional parameters
+// (very useful for i18n purposes)
+// ----------------------------------------------------------------------------
+
+#if !defined(wxVsnprintf_)
+
+// wxUSE_STRUTILS says our wxVsnprintf_ implementation to use or not to
+// use wxStrlen and wxStrncpy functions over one-char processing loops.
+//
+// Some benchmarking revealed that wxUSE_STRUTILS == 1 has the following
+// effects:
+// -> on Windows:
+// when in ANSI mode, this setting does not change almost anything
+// when in Unicode mode, it gives ~ 50% of slowdown !
+// -> on Linux:
+// both in ANSI and Unicode mode it gives ~ 60% of speedup !
+//
+#if defined(WIN32) && wxUSE_UNICODE
+#define wxUSE_STRUTILS 0
+#else
+#define wxUSE_STRUTILS 1
+#endif
+
+// some limits of our implementation
+#define wxMAX_SVNPRINTF_ARGUMENTS 64
+#define wxMAX_SVNPRINTF_FLAGBUFFER_LEN 32
+
+// the conversion specifiers accepted by wxMyPosVsnprintf_
+enum wxPrintfArgType {
+ wxPAT_INVALID = -1,
+
+ wxPAT_INT, // %d, %i, %o, %u, %x, %X
+ wxPAT_LONGINT, // %ld, etc
+#if SIZEOF_LONG_LONG
+ wxPAT_LONGLONGINT, // %Ld, etc
+#endif
+ wxPAT_SIZET, // %Zd, etc
+
+ wxPAT_DOUBLE, // %e, %E, %f, %g, %G
+ wxPAT_LONGDOUBLE, // %le, etc
+
+ wxPAT_POINTER, // %p
+
+ wxPAT_CHAR, // %hc (in ANSI mode: %c, too)
+ wxPAT_WCHAR, // %lc (in Unicode mode: %c, too)
+
+ wxPAT_PCHAR, // %s (related to a char *)
+ wxPAT_PWCHAR, // %s (related to a wchar_t *)
+
+ wxPAT_NINT, // %n
+ wxPAT_NSHORTINT, // %hn
+ wxPAT_NLONGINT // %ln
+};
+
+// an argument passed to wxMyPosVsnprintf_
+typedef union {
+ int pad_int; // %d, %i, %o, %u, %x, %X
+ long int pad_longint; // %ld, etc
+#if SIZEOF_LONG_LONG
+ long long int pad_longlongint; // %Ld, etc
+#endif
+ size_t pad_sizet; // %Zd, etc
+
+ double pad_double; // %e, %E, %f, %g, %G
+ long double pad_longdouble; // %le, etc
+
+ void *pad_pointer; // %p
+
+ char pad_char; // %hc (in ANSI mode: %c, too)
+ wchar_t pad_wchar; // %lc (in Unicode mode: %c, too)
+
+ char *pad_pchar; // %s (related to a char *)
+ wchar_t *pad_pwchar; // %s (related to a wchar_t *)
+
+ int *pad_nint; // %n
+ short int *pad_nshortint; // %hn
+ long int *pad_nlongint; // %ln
+} wxPrintfArg;
+
+
+// Contains parsed data relative to a conversion specifier given to
+// wxMyPosVsnprintf_ and parsed from the format string
+// NOTE: in C++ there is almost no difference between struct & classes thus
+// there is no performance gain by using a struct here...
+class wxPrintfConvSpec
+{
+public:
+
+ // the position of the argument relative to this conversion specifier
+ size_t pos;
+
+ // the type of this conversion specifier
+ wxPrintfArgType type;
+
+ // the minimum and maximum width
+ // when one of this var is set to -1 it means: use the following argument
+ // in the stack as minimum/maximum width for this conversion specifier
+ int min_width, max_width;
+
+ // does the argument need to the be aligned to left ?
+ bool adj_left;
+
+ // pointer to the '%' of this conversion specifier in the format string
+ // NOTE: this points somewhere in the string given to the Parse() function -
+ // it's task of the caller ensure that memory is still valid !
+ const wxChar *argpos;
+
+ // pointer to the last character of this conversion specifier in the
+ // format string
+ // NOTE: this points somewhere in the string given to the Parse() function -
+ // it's task of the caller ensure that memory is still valid !
+ const wxChar *argend;
+
+ // a little buffer where formatting flags like #+\.hlqLZ are stored by Parse()
+ // for use in Process()
+ char szFlags[wxMAX_SVNPRINTF_FLAGBUFFER_LEN];
+
+
+public:
+
+ // we don't declare this as a constructor otherwise it would be called
+ // automatically and we don't want this: to be optimized, wxMyPosVsnprintf_
+ // calls this function only on really-used instances of this class.
+ void Init();
+
+ // Parses the first conversion specifier in the given string, which must
+ // begin with a '%'. Returns false if the first '%' does not introduce a
+ // (valid) conversion specifier and thus should be ignored.
+ bool Parse(const wxChar *format);
+
+ // Process this conversion specifier and puts the result in the given
+ // buffer. Returns the number of characters written in 'buf' or -1 if
+ // there's not enough space.
+ int Process(wxChar *buf, size_t lenMax, wxPrintfArg *p);
+
+ // Loads the argument of this conversion specifier from given va_list.
+ bool LoadArg(wxPrintfArg *p, va_list &argptr);
+
+private:
+ // An helper function of LoadArg() which is used to handle the '*' flag
+ void ReplaceAsteriskWith(int w);
+};
+
+void wxPrintfConvSpec::Init()
+{
+ min_width = 0;
+ max_width = 0xFFFF;
+ pos = 0;
+ adj_left = false;
+ argpos = argend = NULL;
+ type = wxPAT_INVALID;
+ szFlags[0] = wxT('%');
+}
+
+bool wxPrintfConvSpec::Parse(const wxChar *format)
+{
+ bool done = false;
+
+ // temporary parse data
+ size_t flagofs = 1;
+ bool in_prec, prec_dot;
+ int ilen = 0;
+
+ adj_left = in_prec = prec_dot = false;
+ argpos = argend = format;
+ do
+ {
+#define CHECK_PREC \
+ if (in_prec && !prec_dot) \
+ { \
+ szFlags[flagofs++] = '.'; \
+ prec_dot = true; \
+ }
+
+ // what follows '%'?
+ const wxChar ch = *(++argend);
+ switch ( ch )
+ {
+ case wxT('\0'):
+ return false; // not really an argument
+
+ case wxT('%'):
+ return false; // not really an argument
+
+ case wxT('#'):
+ case wxT('0'):
+ case wxT(' '):
+ case wxT('+'):
+ case wxT('\''):
+ CHECK_PREC
+ szFlags[flagofs++] = ch;
+ break;
+
+ case wxT('-'):
+ CHECK_PREC
+ adj_left = true;
+ szFlags[flagofs++] = ch;
+ break;
+
+ case wxT('.'):
+ CHECK_PREC
+ in_prec = true;
+ prec_dot = false;
+ max_width = 0;
+ // dot will be auto-added to szFlags if non-negative
+ // number follows
+ break;
+
+ case wxT('h'):
+ ilen = -1;
+ CHECK_PREC
+ szFlags[flagofs++] = ch;
+ break;
+
+ case wxT('l'):
+ ilen = 1;
+ CHECK_PREC
+ szFlags[flagofs++] = ch;
+ break;
+
+ case wxT('q'):
+ case wxT('L'):
+ ilen = 2;
+ CHECK_PREC
+ szFlags[flagofs++] = ch;
+ break;
+
+ case wxT('Z'):
+ ilen = 3;
+ CHECK_PREC
+ szFlags[flagofs++] = ch;
+ break;
+
+ case wxT('*'):
+ if (in_prec)
+ {
+ CHECK_PREC
+
+ // tell Process() to use the next argument
+ // in the stack as maxwidth...
+ max_width = -1;
+ }
+ else
+ {
+ // tell Process() to use the next argument
+ // in the stack as minwidth...
+ min_width = -1;
+ }
+
+ // save the * in our formatting buffer...
+ // will be replaced later by Process()
+ szFlags[flagofs++] = ch;
+ break;
+
+ case wxT('1'): case wxT('2'): case wxT('3'):
+ case wxT('4'): case wxT('5'): case wxT('6'):
+ case wxT('7'): case wxT('8'): case wxT('9'):
+ {
+ int len = 0;
+ CHECK_PREC
+ while ( (*argend >= wxT('0')) &&
+ (*argend <= wxT('9')) )
+ {
+ szFlags[flagofs++] = *argend;
+ len = len*10 + (*argend - wxT('0'));
+ argend++;
+ }
+
+ if (in_prec)
+ max_width = len;
+ else
+ min_width = len;
+
+ argend--; // the main loop pre-increments n again
+ }
+ break;
+
+ case wxT('$'): // a positional parameter (e.g. %2$s) ?
+ {
+ if (min_width <= 0)
+ break; // ignore this formatting flag as no
+ // numbers are preceding it
+
+ // remove from szFlags all digits previously added
+ do {
+ flagofs--;
+ } while (szFlags[flagofs] >= '1' &&
+ szFlags[flagofs] <= '9');
+
+ // re-adjust the offset making it point to the
+ // next free char of szFlags
+ flagofs++;
+
+ pos = min_width;
+ min_width = 0;
+ }
+ break;
+
+ case wxT('d'):
+ case wxT('i'):
+ case wxT('o'):
+ case wxT('u'):
+ case wxT('x'):
+ case wxT('X'):
+ CHECK_PREC
+ szFlags[flagofs++] = ch;
+ szFlags[flagofs] = '\0';
+ if (ilen == 0)
+ type = wxPAT_INT;
+ else if (ilen == -1)
+ // NB: 'short int' value passed through '...'
+ // is promoted to 'int', so we have to get
+ // an int from stack even if we need a short
+ type = wxPAT_INT;
+ else if (ilen == 1)
+ type = wxPAT_LONGINT;
+ else if (ilen == 2)
+#if SIZEOF_LONG_LONG
+ type = wxPAT_LONGLONGINT;
+#else // !long long
+ type = wxPAT_LONGINT;
+#endif // long long/!long long
+ else if (ilen == 3)
+ type = wxPAT_SIZET;
+ done = true;
+ break;
+
+ case wxT('e'):
+ case wxT('E'):
+ case wxT('f'):
+ case wxT('g'):
+ case wxT('G'):
+ CHECK_PREC
+ szFlags[flagofs++] = ch;
+ szFlags[flagofs] = '\0';
+ if (ilen == 2)
+ type = wxPAT_LONGDOUBLE;
+ else
+ type = wxPAT_DOUBLE;
+ done = true;
+ break;
+
+ case wxT('p'):
+ type = wxPAT_POINTER;
+ done = true;
+ break;
+
+ case wxT('c'):
+ if (ilen == -1)
+ {
+ // in Unicode mode %hc == ANSI character
+ // and in ANSI mode, %hc == %c == ANSI...
+ type = wxPAT_CHAR;
+ }
+ else if (ilen == 1)
+ {
+ // in ANSI mode %lc == Unicode character
+ // and in Unicode mode, %lc == %c == Unicode...
+ type = wxPAT_WCHAR;
+ }
+ else
+ {
+#if wxUSE_UNICODE
+ // in Unicode mode, %c == Unicode character
+ type = wxPAT_WCHAR;
+#else
+ // in ANSI mode, %c == ANSI character
+ type = wxPAT_CHAR;
+#endif
+ }
+ done = true;
+ break;
+
+ case wxT('s'):
+ if (ilen == -1)
+ {
+ // Unicode mode wx extension: we'll let %hs mean non-Unicode
+ // strings (when in ANSI mode, %s == %hs == ANSI string)
+ type = wxPAT_PCHAR;
+ }
+ else if (ilen == 1)
+ {
+ // in Unicode mode, %ls == %s == Unicode string
+ // in ANSI mode, %ls == Unicode string
+ type = wxPAT_PWCHAR;
+ }
+ else
+ {
+#if wxUSE_UNICODE
+ type = wxPAT_PWCHAR;
+#else
+ type = wxPAT_PCHAR;
+#endif
+ }
+ done = true;
+ break;
+
+ case wxT('n'):
+ if (ilen == 0)
+ type = wxPAT_NINT;
+ else if (ilen == -1)
+ type = wxPAT_NSHORTINT;
+ else if (ilen >= 1)
+ type = wxPAT_NLONGINT;
+ done = true;
+ break;
+
+ default:
+ // bad format, don't consider this an argument;
+ // leave it unchanged
+ return false;
+ }
+ }
+ while (!done);
+
+ return true; // parsing was successful
+}
+
+
+void wxPrintfConvSpec::ReplaceAsteriskWith(int w)
+{
+ char temp[wxMAX_SVNPRINTF_FLAGBUFFER_LEN];
+
+ // find the first * in our flag buffer
+ char *pwidth = strchr(szFlags, '*');
+ wxASSERT(pwidth);
+
+ // save what follows the * (the +1 is to skip it!)
+ strcpy(temp, pwidth+1);
+ if (w < 0) {
+ pwidth[0] = '-';
+ pwidth++;
+ }
+
+ // replace * with the actual integer given as width
+ int offset = ::sprintf(pwidth,"%d",abs(w));
+
+ // restore after the expanded * what was following it
+ strcpy(pwidth+offset, temp);
+}
+
+bool wxPrintfConvSpec::LoadArg(wxPrintfArg *p, va_list &argptr)
+{
+ // did the '*' width/precision specifier was used ?
+ if (max_width == -1)
+ {
+ // take the maxwidth specifier from the stack
+ max_width = va_arg(argptr, int);
+ if (max_width < 0)
+ max_width = 0;
+ else
+ ReplaceAsteriskWith(max_width);
+ }
+
+ if (min_width == -1)
+ {
+ // take the minwidth specifier from the stack
+ min_width = va_arg(argptr, int);
+
+ ReplaceAsteriskWith(min_width);
+ if (min_width < 0)
+ {
+ adj_left = !adj_left;
+ min_width = -min_width;
+ }
+ }
+
+ switch (type) {
+ case wxPAT_INT:
+ p->pad_int = va_arg(argptr, int);
+ break;
+ case wxPAT_LONGINT:
+ p->pad_longint = va_arg(argptr, long int);
+ break;
+#if SIZEOF_LONG_LONG
+ case wxPAT_LONGLONGINT:
+ p->pad_longlongint = va_arg(argptr, long long int);
+ break;
+#endif
+ case wxPAT_SIZET:
+ p->pad_sizet = va_arg(argptr, size_t);
+ break;
+ case wxPAT_DOUBLE:
+ p->pad_double = va_arg(argptr, double);
+ break;
+ case wxPAT_LONGDOUBLE:
+ p->pad_longdouble = va_arg(argptr, long double);
+ break;
+ case wxPAT_POINTER:
+ p->pad_pointer = va_arg(argptr, void *);
+ break;
+
+ case wxPAT_CHAR:
+ p->pad_char = va_arg(argptr, int); // char is promoted to int when passed through '...'
+ break;
+ case wxPAT_WCHAR:
+ p->pad_wchar = va_arg(argptr, int); // char is promoted to int when passed through '...'
+ break;
+
+ case wxPAT_PCHAR:
+ p->pad_pchar = va_arg(argptr, char *);
+ break;
+ case wxPAT_PWCHAR:
+ p->pad_pwchar = va_arg(argptr, wchar_t *);
+ break;
+
+ case wxPAT_NINT:
+ p->pad_nint = va_arg(argptr, int *);
+ break;
+ case wxPAT_NSHORTINT:
+ p->pad_nshortint = va_arg(argptr, short int *);
+ break;
+ case wxPAT_NLONGINT:
+ p->pad_nlongint = va_arg(argptr, long int *);
+ break;
+
+ case wxPAT_INVALID:
+ default:
+ return false;
+ }
+
+ return true; // loading was successful
+}
+
+int wxPrintfConvSpec::Process(wxChar *buf, size_t lenMax, wxPrintfArg *p)
+{
+ // buffer to avoid dynamic memory allocation each time for small strings
+ static char szScratch[1024];
+ size_t lenCur = 0;
+
+#define APPEND_CH(ch) \
+ { \
+ if ( lenCur == lenMax ) \
+ return -1; \
+ \
+ buf[lenCur++] = ch; \
+ }
+
+#define APPEND_STR(s) \
+ { \
+ for ( const wxChar *p = s; *p; p++ ) \
+ { \
+ APPEND_CH(*p); \
+ } \
+ }
+
+ switch ( type )
+ {
+ case wxPAT_INT:
+ ::sprintf(szScratch, szFlags, p->pad_int);
+ break;
+
+ case wxPAT_LONGINT:
+ ::sprintf(szScratch, szFlags, p->pad_longint);
+ break;
+
+#if SIZEOF_LONG_LONG
+ case wxPAT_LONGLONGINT:
+ ::sprintf(szScratch, szFlags, p->pad_longlongint);
+ break;
+#endif // SIZEOF_LONG_LONG
+
+ case wxPAT_SIZET:
+ ::sprintf(szScratch, szFlags, p->pad_sizet);
+ break;
+
+ case wxPAT_LONGDOUBLE:
+ ::sprintf(szScratch, szFlags, p->pad_longdouble);
+ break;
+
+ case wxPAT_DOUBLE:
+ ::sprintf(szScratch, szFlags, p->pad_double);
+ break;
+
+ case wxPAT_POINTER:
+ ::sprintf(szScratch, szFlags, p->pad_pointer);
+ break;
+
+ case wxPAT_CHAR:
+ case wxPAT_WCHAR:
+ {
+ wxChar val =
+#if wxUSE_UNICODE
+ p->pad_wchar;
+
+ if (type == wxPAT_CHAR) {
+ // user passed a character explicitely indicated as ANSI...
+ const char buf[2] = { p->pad_char, 0 };
+ val = wxString(buf, wxConvLibc)[0u];
+ }
+#else
+ p->pad_char;
+
+#if wxUSE_WCHAR_T
+ if (type == wxPAT_WCHAR) {
+ // user passed a character explicitely indicated as Unicode...
+ const wchar_t buf[2] = { p->pad_wchar, 0 };
+ val = wxString(buf, wxConvLibc)[0u];
+ }
+#endif
+#endif
+
+ size_t i;
+
+ if (!adj_left)
+ for (i = 1; i < (size_t)min_width; i++)
+ APPEND_CH(_T(' '));
+
+ APPEND_CH(val);
+
+ if (adj_left)
+ for (i = 1; i < (size_t)min_width; i++)
+ APPEND_CH(_T(' '));
+ }
+ break;
+
+ case wxPAT_PCHAR:
+ case wxPAT_PWCHAR:
+ {
+ wxString s;
+ const wxChar *val =
+#if wxUSE_UNICODE
+ p->pad_pwchar;
+
+ if (type == wxPAT_PCHAR) {
+ // user passed a string explicitely indicated as ANSI...
+ val = s = wxString(p->pad_pchar, wxConvLibc);
+ }
+#else
+ p->pad_pchar;
+
+#if wxUSE_WCHAR_T
+ if (type == wxPAT_PWCHAR) {
+ // user passed a string explicitely indicated as Unicode...
+ val = s = wxString(p->pad_pwchar, wxConvLibc);
+ }
+#endif
+#endif
+ int len;
+
+ if (val)
+ {
+#if wxUSE_STRUTILS
+ // at this point we are sure that max_width is positive or null
+ // (see top of wxPrintfConvSpec::LoadArg)
+ len = wxMin((unsigned int)max_width, wxStrlen(val));
+#else
+ for ( len = 0; val[len] && (len < max_width); len++ )
+ ;
+#endif
+ }
+ else if (max_width >= 6)
+ {
+ val = wxT("(null)");
+ len = 6;
+ }
+ else
+ {
+ val = wxEmptyString;
+ len = 0;
+ }
+
+ int i;
+
+ if (!adj_left)
+ {
+ for (i = len; i < min_width; i++)
+ APPEND_CH(_T(' '));
+ }
+
+#if wxUSE_STRUTILS
+ // at this point we are sure that max_width is positive or null
+ // (see top of wxPrintfConvSpec::LoadArg)
+ len = wxMin((unsigned int)len, lenMax-lenCur);
+ wxStrncpy(buf+lenCur, val, len);
+ lenCur += len;
+#else
+ for (i = 0; i < len; i++)
+ APPEND_CH(val[i]);
+#endif
+
+ if (adj_left)
+ {
+ for (i = len; i < min_width; i++)
+ APPEND_CH(_T(' '));
+ }
+ }
+ break;
+
+ case wxPAT_NINT:
+ *p->pad_nint = lenCur;
+ break;
+
+ case wxPAT_NSHORTINT:
+ *p->pad_nshortint = lenCur;
+ break;
+
+ case wxPAT_NLONGINT:
+ *p->pad_nlongint = lenCur;
+ break;
+
+ case wxPAT_INVALID:
+ default:
+ return -1;
+ }
+
+ // if we used system's sprintf() then we now need to append the s_szScratch
+ // buffer to the given one...
+ switch (type)
+ {
+ case wxPAT_INT:
+ case wxPAT_LONGINT:
+#if SIZEOF_LONG_LONG
+ case wxPAT_LONGLONGINT:
+#endif
+ case wxPAT_SIZET:
+ case wxPAT_LONGDOUBLE:
+ case wxPAT_DOUBLE:
+ case wxPAT_POINTER:
+#if wxUSE_STRUTILS
+ {
+ const wxMB2WXbuf tmp = wxConvLibc.cMB2WX(szScratch);
+ size_t len = wxMin(lenMax, wxStrlen(tmp));
+ wxStrncpy(buf, tmp, len);
+ lenCur += len;
+ }
+#else
+ {
+ const wxMB2WXbuf tmp =
+ wxConvLibc.cMB2WX(szScratch);
+ APPEND_STR(tmp);
+ }