1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxChar implementation
8 // Copyright: (c) wxWindows copyright
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "wxchar.h"
16 // ===========================================================================
17 // headers, declarations, constants
18 // ===========================================================================
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #define _ISOC9X_SOURCE 1 // to get vsscanf()
28 #define _BSD_SOURCE 1 // to still get strdup()
38 #include "wx/wxchar.h"
39 #include "wx/string.h"
43 #if defined(__WIN32__) && defined(wxNEED_WX_CTYPE_H)
50 #if defined(__MWERKS__) && __MSL__ >= 0x6000
55 size_t WXDLLEXPORT
wxMB2WC(wchar_t *buf
, const char *psz
, size_t n
)
57 // assume that we have mbsrtowcs() too if we have wcsrtombs()
60 memset(&mbstate
, 0, sizeof(mbstate_t));
65 if (n
) *buf
= wxT('\0');
69 return mbsrtowcs(buf
, &psz
, n
, &mbstate
);
71 return mbstowcs(buf
, psz
, n
);
76 return mbsrtowcs((wchar_t *) NULL
, &psz
, 0, &mbstate
);
78 return mbstowcs((wchar_t *) NULL
, psz
, 0);
82 size_t WXDLLEXPORT
wxWC2MB(char *buf
, const wchar_t *pwz
, size_t n
)
86 memset(&mbstate
, 0, sizeof(mbstate_t));
91 // glibc2.1 chokes on null input
96 return wcsrtombs(buf
, &pwz
, n
, &mbstate
);
98 return wcstombs(buf
, pwz
, n
);
103 return wcsrtombs((char *) NULL
, &pwz
, 0, &mbstate
);
105 return wcstombs((char *) NULL
, pwz
, 0);
108 #endif // wxUSE_WCHAR_T
110 bool WXDLLEXPORT
wxOKlibc()
112 #if wxUSE_WCHAR_T && defined(__UNIX__) && defined(__GLIBC__) && !defined(__WINE__)
113 // glibc 2.0 uses UTF-8 even when it shouldn't
115 if ((MB_CUR_MAX
== 2) &&
116 (wxMB2WC(&res
, "\xdd\xa5", 1) == 1) &&
118 // this is UTF-8 allright, check whether that's what we want
119 char *cur_locale
= setlocale(LC_CTYPE
, NULL
);
120 if ((strlen(cur_locale
) < 4) ||
121 (strcasecmp(cur_locale
+ strlen(cur_locale
) - 4, "utf8")) ||
122 (strcasecmp(cur_locale
+ strlen(cur_locale
) - 5, "utf-8"))) {
123 // nope, don't use libc conversion
131 // ============================================================================
132 // printf() functions business
133 // ============================================================================
135 // special test mode: define all functions below even if we don't really need
136 // them to be able to test them
147 #define wxNEED_WPRINTF
149 int wxVfprintf( FILE *stream
, const wxChar
*format
, va_list argptr
);
152 // ----------------------------------------------------------------------------
153 // implement [v]snprintf() if the system doesn't provide a safe one
154 // ----------------------------------------------------------------------------
156 #if !defined(wxVsnprintf_)
157 int WXDLLEXPORT
wxVsnprintf_(wxChar
*buf
, size_t lenMax
,
158 const wxChar
*format
, va_list argptr
)
160 // buffer to avoid dynamic memory allocation each time for small strings
161 char szScratch
[1024];
163 // number of characters in the buffer so far, must be less than lenMax
166 for ( size_t n
= 0; ; n
++ )
168 const wxChar chCur
= format
[n
];
170 if ( chCur
== wxT('%') )
172 static char s_szFlags
[256] = "%";
174 bool adj_left
= FALSE
,
179 size_t min_width
= 0,
180 max_width
= wxSTRING_MAXLEN
;
185 if (in_prec && !prec_dot) \
187 s_szFlags[flagofs++] = '.'; \
191 #define APPEND_CH(ch) \
192 if ( lenCur == lenMax ) \
197 #define APPEND_STR(s) \
199 for ( const wxChar *p = s; *p; p++ ) \
206 const wxChar ch
= format
[++n
];
226 s_szFlags
[flagofs
++] = ch
;
232 s_szFlags
[flagofs
++] = ch
;
240 // dot will be auto-added to s_szFlags if non-negative
247 s_szFlags
[flagofs
++] = ch
;
253 s_szFlags
[flagofs
++] = ch
;
260 s_szFlags
[flagofs
++] = ch
;
266 s_szFlags
[flagofs
++] = ch
;
271 int len
= va_arg(argptr
, int);
282 adj_left
= !adj_left
;
283 s_szFlags
[flagofs
++] = '-';
288 flagofs
+= ::sprintf(s_szFlags
+flagofs
,"%d",len
);
292 case wxT('1'): case wxT('2'): case wxT('3'):
293 case wxT('4'): case wxT('5'): case wxT('6'):
294 case wxT('7'): case wxT('8'): case wxT('9'):
298 while ( (format
[n
] >= wxT('0')) &&
299 (format
[n
] <= wxT('9')) )
301 s_szFlags
[flagofs
++] = format
[n
];
302 len
= len
*10 + (format
[n
] - wxT('0'));
311 n
--; // the main loop pre-increments n again
322 s_szFlags
[flagofs
++] = ch
;
323 s_szFlags
[flagofs
] = '\0';
326 int val
= va_arg(argptr
, int);
327 ::sprintf(szScratch
, s_szFlags
, val
);
331 // NB: 'short int' value passed through '...'
332 // is promoted to 'int', so we have to get
333 // an int from stack even if we need a short
334 short int val
= (short int) va_arg(argptr
, int);
335 ::sprintf(szScratch
, s_szFlags
, val
);
339 long int val
= va_arg(argptr
, long int);
340 ::sprintf(szScratch
, s_szFlags
, val
);
345 long long int val
= va_arg(argptr
, long long int);
346 ::sprintf(szScratch
, s_szFlags
, val
);
348 long int val
= va_arg(argptr
, long int);
349 ::sprintf(szScratch
, s_szFlags
, val
);
350 #endif // long long/!long long
354 size_t val
= va_arg(argptr
, size_t);
355 ::sprintf(szScratch
, s_szFlags
, val
);
359 const wxMB2WXbuf tmp
=
360 wxConvLibc
.cMB2WX(szScratch
);
373 s_szFlags
[flagofs
++] = ch
;
374 s_szFlags
[flagofs
] = '\0';
377 long double val
= va_arg(argptr
, long double);
378 ::sprintf(szScratch
, s_szFlags
, val
);
382 double val
= va_arg(argptr
, double);
383 ::sprintf(szScratch
, s_szFlags
, val
);
387 const wxMB2WXbuf tmp
=
388 wxConvLibc
.cMB2WX(szScratch
);
397 void *val
= va_arg(argptr
, void *);
399 s_szFlags
[flagofs
++] = ch
;
400 s_szFlags
[flagofs
] = '\0';
401 ::sprintf(szScratch
, s_szFlags
, val
);
403 const wxMB2WXbuf tmp
=
404 wxConvLibc
.cMB2WX(szScratch
);
413 wxChar val
= va_arg(argptr
, int);
414 // we don't need to honor padding here, do we?
424 // wx extension: we'll let %hs mean non-Unicode
426 char *val
= va_arg(argptr
, char *);
428 // ASCII->Unicode constructor handles max_width
430 wxString
s(val
, wxConvLibc
, max_width
);
432 size_t len
= wxSTRING_MAXLEN
;
436 val
[len
] && (len
< max_width
);
442 wxString
s(val
, len
);
444 if (s
.Len() < min_width
)
445 s
.Pad(min_width
- s
.Len(), wxT(' '), adj_left
);
451 wxChar
*val
= va_arg(argptr
, wxChar
*);
452 size_t len
= wxSTRING_MAXLEN
;
456 val
[len
] && (len
< max_width
);
463 wxString
s(val
, len
);
464 if (s
.Len() < min_width
)
465 s
.Pad(min_width
- s
.Len(), wxT(' '), adj_left
);
475 int *val
= va_arg(argptr
, int *);
480 short int *val
= va_arg(argptr
, short int *);
485 long int *val
= va_arg(argptr
, long int *);
492 // bad format, leave unchanged
518 #endif // !wxVsnprintfA
520 #if !defined(wxSnprintf_)
521 int WXDLLEXPORT
wxSnprintf_(wxChar
*buf
, size_t len
, const wxChar
*format
, ...)
524 va_start(argptr
, format
);
526 int iLen
= wxVsnprintf_(buf
, len
, format
, argptr
);
532 #endif // wxSnprintf_
534 // ----------------------------------------------------------------------------
535 // implement the standard IO functions for wide char if libc doesn't have them
536 // ----------------------------------------------------------------------------
540 int wxFputs(const wchar_t *ws
, FILE *stream
)
542 // counting the number of wide characters written isn't worth the trouble,
543 // simply distinguish between ok and error
544 return fputs(wxConvLibc
.cWC2MB(ws
), stream
) == -1 ? -1 : 0;
547 int /* not wint_t */ wxPutc(wchar_t wc
, FILE *stream
)
549 wchar_t ws
[2] = { wc
, L
'\0' };
551 return wxFputs(ws
, stream
);
554 #endif // wxNEED_FPUTWC
556 // NB: we only implement va_list functions here, the ones taking ... are
557 // defined below for wxNEED_PRINTF_CONVERSION case anyhow and we reuse
558 // the definitions there to avoid duplicating them here
559 #ifdef wxNEED_WPRINTF
561 // TODO: implement the scanf() functions
562 int vwscanf(const wxChar
*format
, va_list argptr
)
564 wxFAIL_MSG( _T("TODO") );
569 int vswscanf(const wxChar
*ws
, const wxChar
*format
, va_list argptr
)
571 wxFAIL_MSG( _T("TODO") );
576 int vfwscanf(FILE *stream
, const wxChar
*format
, va_list argptr
)
578 wxFAIL_MSG( _T("TODO") );
583 #define vswprintf wxVsnprintf_
585 int vfwprintf(FILE *stream
, const wxChar
*format
, va_list argptr
)
588 int rc
= s
.PrintfV(format
, argptr
);
592 // we can't do much better without Unicode support in libc...
593 if ( fprintf(stream
, "%s", s
.mb_str()) == -1 )
600 int vwprintf(const wxChar
*format
, va_list argptr
)
602 return wxVfprintf(stdout
, format
, argptr
);
605 #endif // wxNEED_WPRINTF
607 #ifdef wxNEED_PRINTF_CONVERSION
609 // ----------------------------------------------------------------------------
610 // wxFormatConverter: class doing the "%s" -> "%ls" conversion
611 // ----------------------------------------------------------------------------
614 Here are the gory details. We want to follow the Windows/MS conventions,
619 format specifier results in
620 -----------------------------------
626 format specifier results in
627 -----------------------------------
632 while on POSIX systems we have %C identical to %lc and %c always means char
633 (in any mode) while %lc always means wchar_t,
635 So to use native functions in order to get our semantics we must do the
636 following translations in Unicode mode (nothing to do in ANSI mode):
638 wxWindows specifier POSIX specifier
639 ----------------------------------------
645 And, of course, the same should be done for %s as well.
648 class wxFormatConverter
651 wxFormatConverter(const wxChar
*format
);
653 // notice that we only translated the string if m_fmtOrig == NULL (as set
654 // by CopyAllBefore()), otherwise we should simply use the original format
655 operator const wxChar
*() const
656 { return m_fmtOrig
? m_fmtOrig
: m_fmt
.c_str(); }
659 // copy another character to the translated format: this function does the
660 // copy if we are translating but doesn't do anything at all if we don't,
661 // so we don't create the translated format string at all unless we really
662 // need to (i.e. InsertFmtChar() is called)
663 wxChar
CopyFmtChar(wxChar ch
)
667 // we're translating, do copy
672 // simply increase the count which should be copied by
673 // CopyAllBefore() later if needed
680 // insert an extra character
681 void InsertFmtChar(wxChar ch
)
685 // so far we haven't translated anything yet
694 wxASSERT_MSG( m_fmtOrig
&& m_fmt
.empty(), _T("logic error") );
696 m_fmt
= wxString(m_fmtOrig
, m_nCopied
);
698 // we won't need it any longer
702 static bool IsFlagChar(wxChar ch
)
704 return ch
== _T('-') || ch
== _T('+') ||
705 ch
== _T('0') || ch
== _T(' ') || ch
== _T('#');
708 void SkipDigits(const wxChar
**ppc
)
710 while ( **ppc
>= _T('0') && **ppc
<= _T('9') )
711 CopyFmtChar(*(*ppc
)++);
714 // the translated format
717 // the original format
718 const wxChar
*m_fmtOrig
;
720 // the number of characters already copied
724 wxFormatConverter::wxFormatConverter(const wxChar
*format
)
731 if ( CopyFmtChar(*format
++) == _T('%') )
734 while ( IsFlagChar(*format
) )
735 CopyFmtChar(*format
++);
737 // and possible width
738 if ( *format
== _T('*') )
739 CopyFmtChar(*format
++);
744 if ( *format
== _T('.') )
749 // next we can have a size modifier
765 // "ll" has a different meaning!
766 if ( format
[1] != _T('l') )
778 // and finally we should have the type
783 // %C and %hC -> %c and %lC -> %lc
785 CopyFmtChar(_T('l'));
787 InsertFmtChar(*format
++ == _T('C') ? _T('c') : _T('s'));
792 // %c -> %lc but %hc stays %hc and %lc is still %lc
796 InsertFmtChar(_T('l'));
800 CopyFmtChar(_T('h'));
809 // nothing special to do
810 CopyFmtChar(*format
++);
816 #else // !wxNEED_PRINTF_CONVERSION
817 // no conversion necessary
818 #define wxFormatConverter(x) (x)
819 #endif // wxNEED_PRINTF_CONVERSION/!wxNEED_PRINTF_CONVERSION
821 // ----------------------------------------------------------------------------
822 // wxPrintf(), wxScanf() and relatives
823 // ----------------------------------------------------------------------------
825 #if defined(wxNEED_PRINTF_CONVERSION) || defined(wxNEED_WPRINTF)
827 int wxScanf( const wxChar
*format
, ... )
830 va_start(argptr
, format
);
832 int ret
= vwscanf(wxFormatConverter(format
), argptr
);
839 int wxSscanf( const wxChar
*str
, const wxChar
*format
, ... )
842 va_start(argptr
, format
);
844 int ret
= vswscanf( str
, wxFormatConverter(format
), argptr
);
851 int wxFscanf( FILE *stream
, const wxChar
*format
, ... )
854 va_start(argptr
, format
);
855 int ret
= vfwscanf(stream
, wxFormatConverter(format
), argptr
);
862 int wxPrintf( const wxChar
*format
, ... )
865 va_start(argptr
, format
);
867 int ret
= vwprintf( wxFormatConverter(format
), argptr
);
875 int wxSnprintf( wxChar
*str
, size_t size
, const wxChar
*format
, ... )
878 va_start(argptr
, format
);
880 int ret
= vswprintf( str
, size
, wxFormatConverter(format
), argptr
);
888 int wxSprintf( wxChar
*str
, const wxChar
*format
, ... )
891 va_start(argptr
, format
);
893 // callers of wxSprintf() deserve what they get
894 int ret
= vswprintf( str
, UINT_MAX
, wxFormatConverter(format
), argptr
);
901 int wxFprintf( FILE *stream
, const wxChar
*format
, ... )
904 va_start( argptr
, format
);
906 int ret
= vfwprintf( stream
, wxFormatConverter(format
), argptr
);
913 int wxVsscanf( const wxChar
*str
, const wxChar
*format
, va_list argptr
)
915 return vswscanf( str
, wxFormatConverter(format
), argptr
);
918 int wxVfprintf( FILE *stream
, const wxChar
*format
, va_list argptr
)
920 return vfwprintf( stream
, wxFormatConverter(format
), argptr
);
923 int wxVprintf( const wxChar
*format
, va_list argptr
)
925 return vwprintf( wxFormatConverter(format
), argptr
);
929 int wxVsnprintf( wxChar
*str
, size_t size
, const wxChar
*format
, va_list argptr
)
931 return vswprintf( str
, size
, wxFormatConverter(format
), argptr
);
933 #endif // wxVsnprintf
935 int wxVsprintf( wxChar
*str
, const wxChar
*format
, va_list argptr
)
937 // same as for wxSprintf()
938 return vswprintf(str
, UINT_MAX
, wxFormatConverter(format
), argptr
);
941 #endif // wxNEED_PRINTF_CONVERSION
945 // ----------------------------------------------------------------------------
946 // ctype.h stuff (currently unused)
947 // ----------------------------------------------------------------------------
949 #if defined(__WIN32__) && defined(wxNEED_WX_CTYPE_H)
950 inline WORD
wxMSW_ctype(wxChar ch
)
953 GetStringTypeEx(LOCALE_USER_DEFAULT
, CT_CTYPE1
, &ch
, 1, &ret
);
957 WXDLLEXPORT
int wxIsalnum(wxChar ch
) { return IsCharAlphaNumeric(ch
); }
958 WXDLLEXPORT
int wxIsalpha(wxChar ch
) { return IsCharAlpha(ch
); }
959 WXDLLEXPORT
int wxIsctrl(wxChar ch
) { return wxMSW_ctype(ch
) & C1_CNTRL
; }
960 WXDLLEXPORT
int wxIsdigit(wxChar ch
) { return wxMSW_ctype(ch
) & C1_DIGIT
; }
961 WXDLLEXPORT
int wxIsgraph(wxChar ch
) { return wxMSW_ctype(ch
) & (C1_DIGIT
|C1_PUNCT
|C1_ALPHA
); }
962 WXDLLEXPORT
int wxIslower(wxChar ch
) { return IsCharLower(ch
); }
963 WXDLLEXPORT
int wxIsprint(wxChar ch
) { return wxMSW_ctype(ch
) & (C1_DIGIT
|C1_SPACE
|C1_PUNCT
|C1_ALPHA
); }
964 WXDLLEXPORT
int wxIspunct(wxChar ch
) { return wxMSW_ctype(ch
) & C1_PUNCT
; }
965 WXDLLEXPORT
int wxIsspace(wxChar ch
) { return wxMSW_ctype(ch
) & C1_SPACE
; }
966 WXDLLEXPORT
int wxIsupper(wxChar ch
) { return IsCharUpper(ch
); }
967 WXDLLEXPORT
int wxIsxdigit(wxChar ch
) { return wxMSW_ctype(ch
) & C1_XDIGIT
; }
968 WXDLLEXPORT
int wxTolower(wxChar ch
) { return (wxChar
)CharLower((LPTSTR
)(ch
)); }
969 WXDLLEXPORT
int wxToupper(wxChar ch
) { return (wxChar
)CharUpper((LPTSTR
)(ch
)); }
974 WXDLLEXPORT
char *wxStrdupA(const char *s
)
976 return strcpy((char *)malloc(strlen(s
) + 1), s
);
983 WXDLLEXPORT
wchar_t * wxStrdupW(const wchar_t *pwz
)
985 size_t size
= (wxWcslen(pwz
) + 1) * sizeof(wchar_t);
986 wchar_t *ret
= (wchar_t *) malloc(size
);
987 memcpy(ret
, pwz
, size
);
994 int WXDLLEXPORT
wxStricmp(const wxChar
*psz1
, const wxChar
*psz2
)
996 register wxChar c1
, c2
;
998 c1
= wxTolower(*psz1
++);
999 c2
= wxTolower(*psz2
++);
1000 } while ( c1
&& (c1
== c2
) );
1006 int WXDLLEXPORT
wxStrnicmp(const wxChar
*s1
, const wxChar
*s2
, size_t n
)
1008 register wxChar c1
, c2
;
1009 while (n
&& ((c1
= wxTolower(*s1
)) == (c2
= wxTolower(*s2
)) ) && c1
) n
--, s1
++, s2
++;
1011 if (c1
< c2
) return -1;
1012 if (c1
> c2
) return 1;
1019 WXDLLEXPORT wxWCharBuffer
wxSetlocale(int category
, const wxChar
*locale
)
1021 char *localeOld
= setlocale(category
, wxConvLocal
.cWX2MB(locale
));
1023 return wxWCharBuffer(wxConvLocal
.cMB2WC(localeOld
));
1027 // ----------------------------------------------------------------------------
1028 // string.h functions
1029 // ----------------------------------------------------------------------------
1031 #ifdef wxNEED_WX_STRING_H
1032 WXDLLEXPORT wxChar
* wxStrcat(wxChar
*dest
, const wxChar
*src
)
1035 while (*dest
) dest
++;
1036 while ((*dest
++ = *src
++));
1040 WXDLLEXPORT
const wxChar
* wxStrchr(const wxChar
*s
, wxChar c
)
1042 // be careful here as the terminating NUL makes part of the string
1052 WXDLLEXPORT
int wxStrcmp(const wxChar
*s1
, const wxChar
*s2
)
1054 while ((*s1
== *s2
) && *s1
) s1
++, s2
++;
1055 if ((wxUChar
)*s1
< (wxUChar
)*s2
) return -1;
1056 if ((wxUChar
)*s1
> (wxUChar
)*s2
) return 1;
1060 WXDLLEXPORT wxChar
* wxStrcpy(wxChar
*dest
, const wxChar
*src
)
1063 while ((*dest
++ = *src
++));
1067 WXDLLEXPORT wxChar
* wxStrncat(wxChar
*dest
, const wxChar
*src
, size_t n
)
1070 while (*dest
) dest
++;
1071 while (n
&& (*dest
++ = *src
++)) n
--;
1075 WXDLLEXPORT
int wxStrncmp(const wxChar
*s1
, const wxChar
*s2
, size_t n
)
1077 while (n
&& (*s1
== *s2
) && *s1
) n
--, s1
++, s2
++;
1079 if ((wxUChar
)*s1
< (wxUChar
)*s2
) return -1;
1080 if ((wxUChar
)*s1
> (wxUChar
)*s2
) return 1;
1085 WXDLLEXPORT wxChar
* wxStrncpy(wxChar
*dest
, const wxChar
*src
, size_t n
)
1088 while (n
&& (*dest
++ = *src
++)) n
--;
1089 while (n
) *dest
++=0, n
--; // the docs specify padding with zeroes
1093 WXDLLEXPORT
const wxChar
* wxStrpbrk(const wxChar
*s
, const wxChar
*accept
)
1095 while (*s
&& !wxStrchr(accept
, *s
))
1098 return *s
? s
: NULL
;
1101 WXDLLEXPORT
const wxChar
* wxStrrchr(const wxChar
*s
, wxChar c
)
1103 const wxChar
*ret
= NULL
;
1115 WXDLLEXPORT
size_t wxStrspn(const wxChar
*s
, const wxChar
*accept
)
1118 while (wxStrchr(accept
, *s
++)) len
++;
1122 WXDLLEXPORT
const wxChar
*wxStrstr(const wxChar
*haystack
, const wxChar
*needle
)
1124 wxCHECK_RET( needle
, NULL
, _T("NULL argument in wxStrstr") );
1126 // VZ: this is not exactly the most efficient string search algorithm...
1128 const size_t len
= wxStrlen(needle
);
1130 while ( const wxChar
*fnd
= wxStrchr(haystack
, *needle
) )
1132 if ( !wxStrncmp(fnd
, needle
, len
) )
1141 WXDLLEXPORT
double wxStrtod(const wxChar
*nptr
, wxChar
**endptr
)
1143 const wxChar
*start
= nptr
;
1145 // FIXME: only correct for C locale
1146 while (wxIsspace(*nptr
)) nptr
++;
1147 if (*nptr
== wxT('+') || *nptr
== wxT('-')) nptr
++;
1148 while (wxIsdigit(*nptr
)) nptr
++;
1149 if (*nptr
== wxT('.')) {
1151 while (wxIsdigit(*nptr
)) nptr
++;
1153 if (*nptr
== wxT('E') || *nptr
== wxT('e')) {
1155 if (*nptr
== wxT('+') || *nptr
== wxT('-')) nptr
++;
1156 while (wxIsdigit(*nptr
)) nptr
++;
1159 wxString
data(nptr
, nptr
-start
);
1160 wxWX2MBbuf dat
= data
.mb_str(wxConvLocal
);
1161 char *rdat
= wxMBSTRINGCAST dat
;
1162 double ret
= strtod(dat
, &rdat
);
1164 if (endptr
) *endptr
= (wxChar
*)(start
+ (rdat
- (const char *)dat
));
1169 WXDLLEXPORT
long int wxStrtol(const wxChar
*nptr
, wxChar
**endptr
, int base
)
1171 const wxChar
*start
= nptr
;
1173 // FIXME: only correct for C locale
1174 while (wxIsspace(*nptr
)) nptr
++;
1175 if (*nptr
== wxT('+') || *nptr
== wxT('-')) nptr
++;
1176 if (((base
== 0) || (base
== 16)) &&
1177 (nptr
[0] == wxT('0') && nptr
[1] == wxT('x'))) {
1181 else if ((base
== 0) && (nptr
[0] == wxT('0'))) base
= 8;
1182 else if (base
== 0) base
= 10;
1184 while ((wxIsdigit(*nptr
) && (*nptr
- wxT('0') < base
)) ||
1185 (wxIsalpha(*nptr
) && (wxToupper(*nptr
) - wxT('A') + 10 < base
))) nptr
++;
1187 wxString
data(nptr
, nptr
-start
);
1188 wxWX2MBbuf dat
= data
.mb_str(wxConvLocal
);
1189 char *rdat
= wxMBSTRINGCAST dat
;
1190 long int ret
= strtol(dat
, &rdat
, base
);
1192 if (endptr
) *endptr
= (wxChar
*)(start
+ (rdat
- (const char *)dat
));
1196 #endif // wxNEED_WX_STRING_H
1198 #ifdef wxNEED_WX_STDIO_H
1199 WXDLLEXPORT
FILE * wxFopen(const wxChar
*path
, const wxChar
*mode
)
1201 char mode_buffer
[10];
1202 for (size_t i
= 0; i
< wxStrlen(mode
)+1; i
++)
1203 mode_buffer
[i
] = (char) mode
[i
];
1205 return fopen( wxConvFile
.cWX2MB(path
), mode_buffer
);
1208 WXDLLEXPORT
FILE * wxFreopen(const wxChar
*path
, const wxChar
*mode
, FILE *stream
)
1210 char mode_buffer
[10];
1211 for (size_t i
= 0; i
< wxStrlen(mode
)+1; i
++)
1212 mode_buffer
[i
] = (char) mode
[i
];
1214 return freopen( wxConvFile
.cWX2MB(path
), mode_buffer
, stream
);
1217 WXDLLEXPORT
int wxRemove(const wxChar
*path
)
1219 return remove( wxConvFile
.cWX2MB(path
) );
1222 WXDLLEXPORT
int wxRename(const wxChar
*oldpath
, const wxChar
*newpath
)
1224 return rename( wxConvFile
.cWX2MB(oldpath
), wxConvFile
.cWX2MB(newpath
) );
1229 double WXDLLEXPORT
wxAtof(const wxChar
*psz
)
1231 return atof(wxConvLocal
.cWX2MB(psz
));
1235 #ifdef wxNEED_WX_STDLIB_H
1236 int WXDLLEXPORT
wxAtoi(const wxChar
*psz
)
1238 return atoi(wxConvLocal
.cWX2MB(psz
));
1241 long WXDLLEXPORT
wxAtol(const wxChar
*psz
)
1243 return atol(wxConvLocal
.cWX2MB(psz
));
1246 wxChar
* WXDLLEXPORT
wxGetenv(const wxChar
*name
)
1248 static wxHashTable env
;
1250 // check if we already have stored the converted env var
1251 wxObject
*data
= env
.Get(name
);
1254 // nope, retrieve it,
1256 wxCharBuffer buffer
= wxConvLocal
.cWX2MB(name
);
1257 // printf( "buffer %s\n", (const char*) buffer );
1258 const char *val
= getenv( (const char *)buffer
);
1260 const char *val
= getenv( name
);
1263 if (!val
) return (wxChar
*)NULL
;
1264 // printf( "home %s\n", val );
1267 #ifdef wxUSE_UNICODE
1268 data
= (wxObject
*)new wxString(val
, wxConvLocal
);
1270 data
= (wxObject
*)new wxString(val
);
1274 env
.Put(name
, data
);
1276 // return converted env var
1277 return (wxChar
*)((wxString
*)data
)->c_str();
1280 int WXDLLEXPORT
wxSystem(const wxChar
*psz
)
1282 return system(wxConvLocal
.cWX2MB(psz
));
1285 #endif // wxNEED_WX_STDLIB_H
1287 #ifdef wxNEED_WX_TIME_H
1288 WXDLLEXPORT
size_t wxStrftime(wxChar
*s
, size_t max
, const wxChar
*fmt
, const struct tm
*tm
)
1292 char *buf
= (char *)malloc(max
);
1293 size_t ret
= strftime(buf
, max
, wxConvLocal
.cWX2MB(fmt
), tm
);
1296 wxStrcpy(s
, wxConvLocal
.cMB2WX(buf
));
1307 #endif // wxNEED_WX_TIME_H
1309 #endif // wxUSE_WCHAR_T
1311 // ----------------------------------------------------------------------------
1312 // functions which we may need even if !wxUSE_WCHAR_T
1313 // ----------------------------------------------------------------------------
1317 WXDLLEXPORT wxChar
* wxStrtok(wxChar
*psz
, const wxChar
*delim
, wxChar
**save_ptr
)
1326 psz
+= wxStrspn(psz
, delim
);
1329 *save_ptr
= (wxChar
*)NULL
;
1330 return (wxChar
*)NULL
;
1334 psz
= wxStrpbrk(psz
, delim
);
1337 *save_ptr
= (wxChar
*)NULL
;
1342 *save_ptr
= psz
+ 1;