1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxChar implementation
8 // Copyright: (c) wxWindows copyright
9 // Licence: wxWindows license
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)
51 size_t WXDLLEXPORT
wxMB2WC(wchar_t *buf
, const char *psz
, size_t n
)
53 // assume that we have mbsrtowcs() too if we have wcsrtombs()
56 memset(&mbstate
, 0, sizeof(mbstate_t));
61 if (n
) *buf
= wxT('\0');
65 return mbsrtowcs(buf
, &psz
, n
, &mbstate
);
67 return mbstowcs(buf
, psz
, n
);
72 return mbsrtowcs((wchar_t *) NULL
, &psz
, 0, &mbstate
);
74 return mbstowcs((wchar_t *) NULL
, psz
, 0);
78 size_t WXDLLEXPORT
wxWC2MB(char *buf
, const wchar_t *pwz
, size_t n
)
82 memset(&mbstate
, 0, sizeof(mbstate_t));
87 // glibc2.1 chokes on null input
92 return wcsrtombs(buf
, &pwz
, n
, &mbstate
);
94 return wcstombs(buf
, pwz
, n
);
99 return wcsrtombs((char *) NULL
, &pwz
, 0, &mbstate
);
101 return wcstombs((char *) NULL
, pwz
, 0);
104 #endif // wxUSE_WCHAR_T
106 bool WXDLLEXPORT
wxOKlibc()
108 #if wxUSE_WCHAR_T && defined(__UNIX__) && defined(__GLIBC__)
109 // glibc 2.0 uses UTF-8 even when it shouldn't
111 if ((MB_CUR_MAX
== 2) &&
112 (wxMB2WC(&res
, "\xdd\xa5", 1) == 1) &&
114 // this is UTF-8 allright, check whether that's what we want
115 char *cur_locale
= setlocale(LC_CTYPE
, NULL
);
116 if ((strlen(cur_locale
) < 4) ||
117 (strcasecmp(cur_locale
+ strlen(cur_locale
) - 4, "utf8")) ||
118 (strcasecmp(cur_locale
+ strlen(cur_locale
) - 5, "utf-8"))) {
119 // nope, don't use libc conversion
127 // ============================================================================
128 // printf() functions business
129 // ============================================================================
131 // special test mode: define all functions below even if we don't really need
132 // them to be able to test them
143 #define wxNEED_WPRINTF
145 int wxVfprintf( FILE *stream
, const wxChar
*format
, va_list argptr
);
148 // ----------------------------------------------------------------------------
149 // implement [v]snprintf() if the system doesn't provide a safe one
150 // ----------------------------------------------------------------------------
152 #if !defined(wxVsnprintf_)
153 int WXDLLEXPORT
wxVsnprintf_(wxChar
*buf
, size_t lenMax
,
154 const wxChar
*format
, va_list argptr
)
156 // buffer to avoid dynamic memory allocation each time for small strings
157 char szScratch
[1024];
159 // number of characters in the buffer so far, must be less than lenMax
162 for ( size_t n
= 0; ; n
++ )
164 const wxChar chCur
= format
[n
];
166 if ( chCur
== wxT('%') )
168 static char s_szFlags
[256] = "%";
170 bool adj_left
= FALSE
,
175 size_t min_width
= 0,
176 max_width
= wxSTRING_MAXLEN
;
181 if (in_prec && !prec_dot) \
183 s_szFlags[flagofs++] = '.'; \
187 #define APPEND_CH(ch) \
188 if ( lenCur == lenMax ) \
193 #define APPEND_STR(s) \
195 for ( const wxChar *p = s; *p; p++ ) \
202 const wxChar ch
= format
[++n
];
222 s_szFlags
[flagofs
++] = ch
;
228 s_szFlags
[flagofs
++] = ch
;
236 // dot will be auto-added to s_szFlags if non-negative
243 s_szFlags
[flagofs
++] = ch
;
249 s_szFlags
[flagofs
++] = ch
;
256 s_szFlags
[flagofs
++] = ch
;
262 s_szFlags
[flagofs
++] = ch
;
267 int len
= va_arg(argptr
, int);
278 adj_left
= !adj_left
;
279 s_szFlags
[flagofs
++] = '-';
284 flagofs
+= ::sprintf(s_szFlags
+flagofs
,"%d",len
);
288 case wxT('1'): case wxT('2'): case wxT('3'):
289 case wxT('4'): case wxT('5'): case wxT('6'):
290 case wxT('7'): case wxT('8'): case wxT('9'):
294 while ( (format
[n
] >= wxT('0')) &&
295 (format
[n
] <= wxT('9')) )
297 s_szFlags
[flagofs
++] = format
[n
];
298 len
= len
*10 + (format
[n
] - wxT('0'));
307 n
--; // the main loop pre-increments n again
318 s_szFlags
[flagofs
++] = ch
;
319 s_szFlags
[flagofs
] = '\0';
322 int val
= va_arg(argptr
, int);
323 ::sprintf(szScratch
, s_szFlags
, val
);
327 // NB: 'short int' value passed through '...'
328 // is promoted to 'int', so we have to get
329 // an int from stack even if we need a short
330 short int val
= (short int) va_arg(argptr
, int);
331 ::sprintf(szScratch
, s_szFlags
, val
);
335 long int val
= va_arg(argptr
, long int);
336 ::sprintf(szScratch
, s_szFlags
, val
);
341 long long int val
= va_arg(argptr
, long long int);
342 ::sprintf(szScratch
, s_szFlags
, val
);
344 long int val
= va_arg(argptr
, long int);
345 ::sprintf(szScratch
, s_szFlags
, val
);
346 #endif // long long/!long long
350 size_t val
= va_arg(argptr
, size_t);
351 ::sprintf(szScratch
, s_szFlags
, val
);
355 const wxMB2WXbuf tmp
=
356 wxConvLibc
.cMB2WX(szScratch
);
369 s_szFlags
[flagofs
++] = ch
;
370 s_szFlags
[flagofs
] = '\0';
373 long double val
= va_arg(argptr
, long double);
374 ::sprintf(szScratch
, s_szFlags
, val
);
378 double val
= va_arg(argptr
, double);
379 ::sprintf(szScratch
, s_szFlags
, val
);
383 const wxMB2WXbuf tmp
=
384 wxConvLibc
.cMB2WX(szScratch
);
393 void *val
= va_arg(argptr
, void *);
395 s_szFlags
[flagofs
++] = ch
;
396 s_szFlags
[flagofs
] = '\0';
397 ::sprintf(szScratch
, s_szFlags
, val
);
399 const wxMB2WXbuf tmp
=
400 wxConvLibc
.cMB2WX(szScratch
);
409 wxChar val
= va_arg(argptr
, int);
410 // we don't need to honor padding here, do we?
420 // wx extension: we'll let %hs mean non-Unicode
422 char *val
= va_arg(argptr
, char *);
424 // ASCII->Unicode constructor handles max_width
426 wxString
s(val
, wxConvLibc
, max_width
);
428 size_t len
= wxSTRING_MAXLEN
;
432 val
[len
] && (len
< max_width
);
438 wxString
s(val
, len
);
440 if (s
.Len() < min_width
)
441 s
.Pad(min_width
- s
.Len(), wxT(' '), adj_left
);
447 wxChar
*val
= va_arg(argptr
, wxChar
*);
448 size_t len
= wxSTRING_MAXLEN
;
452 val
[len
] && (len
< max_width
);
459 wxString
s(val
, len
);
460 if (s
.Len() < min_width
)
461 s
.Pad(min_width
- s
.Len(), wxT(' '), adj_left
);
471 int *val
= va_arg(argptr
, int *);
476 short int *val
= va_arg(argptr
, short int *);
481 long int *val
= va_arg(argptr
, long int *);
488 // bad format, leave unchanged
514 #endif // !wxVsnprintfA
516 #if !defined(wxSnprintf_)
517 int WXDLLEXPORT
wxSnprintf_(wxChar
*buf
, size_t len
, const wxChar
*format
, ...)
520 va_start(argptr
, format
);
522 int iLen
= wxVsnprintf_(buf
, len
, format
, argptr
);
528 #endif // wxSnprintf_
530 // ----------------------------------------------------------------------------
531 // implement the standard IO functions for wide char if libc doesn't have them
532 // ----------------------------------------------------------------------------
536 int wxFputs(const wchar_t *ws
, FILE *stream
)
538 // counting the number of wide characters written isn't worth the trouble,
539 // simply distinguish between ok and error
540 return fputs(wxConvLibc
.cWC2MB(ws
), stream
) == -1 ? -1 : 0;
543 int /* not wint_t */ wxPutc(wchar_t wc
, FILE *stream
)
545 wchar_t ws
[2] = { wc
, L
'\0' };
547 return wxFputs(ws
, stream
);
550 #endif // wxNEED_FPUTWC
552 // NB: we only implement va_list functions here, the ones taking ... are
553 // defined below for wxNEED_PRINTF_CONVERSION case anyhow and we reuse
554 // the definitions there to avoid duplicating them here
555 #ifdef wxNEED_WPRINTF
557 // TODO: implement the scanf() functions
558 int vwscanf(const wxChar
*format
, va_list argptr
)
560 wxFAIL_MSG( _T("TODO") );
565 int vswscanf(const wxChar
*ws
, const wxChar
*format
, va_list argptr
)
567 wxFAIL_MSG( _T("TODO") );
572 int vfwscanf(FILE *stream
, const wxChar
*format
, va_list argptr
)
574 wxFAIL_MSG( _T("TODO") );
579 #define vswprintf wxVsnprintf_
581 int vfwprintf(FILE *stream
, const wxChar
*format
, va_list argptr
)
584 int rc
= s
.PrintfV(format
, argptr
);
588 // we can't do much better without Unicode support in libc...
589 if ( fprintf(stream
, "%s", s
.mb_str()) == -1 )
596 int vwprintf(const wxChar
*format
, va_list argptr
)
598 return wxVfprintf(stdout
, format
, argptr
);
601 #endif // wxNEED_WPRINTF
603 #ifdef wxNEED_PRINTF_CONVERSION
605 // ----------------------------------------------------------------------------
606 // wxFormatConverter: class doing the "%s" -> "%ls" conversion
607 // ----------------------------------------------------------------------------
610 Here are the gory details. We want to follow the Windows/MS conventions,
615 format specifier results in
616 -----------------------------------
622 format specifier results in
623 -----------------------------------
628 while on POSIX systems we have %C identical to %lc and %c always means char
629 (in any mode) while %lc always means wchar_t,
631 So to use native functions in order to get our semantics we must do the
632 following translations in Unicode mode (nothing to do in ANSI mode):
634 wxWindows specifier POSIX specifier
635 ----------------------------------------
641 And, of course, the same should be done for %s as well.
644 class wxFormatConverter
647 wxFormatConverter(const wxChar
*format
);
649 // notice that we only translated the string if m_fmtOrig == NULL (as set
650 // by CopyAllBefore()), otherwise we should simply use the original format
651 operator const wxChar
*() const
652 { return m_fmtOrig
? m_fmtOrig
: m_fmt
.c_str(); }
655 // copy another character to the translated format: this function does the
656 // copy if we are translating but doesn't do anything at all if we don't,
657 // so we don't create the translated format string at all unless we really
658 // need to (i.e. InsertFmtChar() is called)
659 wxChar
CopyFmtChar(wxChar ch
)
663 // we're translating, do copy
668 // simply increase the count which should be copied by
669 // CopyAllBefore() later if needed
676 // insert an extra character
677 void InsertFmtChar(wxChar ch
)
681 // so far we haven't translated anything yet
690 wxASSERT_MSG( m_fmtOrig
&& m_fmt
.empty(), _T("logic error") );
692 m_fmt
= wxString(m_fmtOrig
, m_nCopied
);
694 // we won't need it any longer
698 static bool IsFlagChar(wxChar ch
)
700 return ch
== _T('-') || ch
== _T('+') ||
701 ch
== _T('0') || ch
== _T(' ') || ch
== _T('#');
704 void SkipDigits(const wxChar
**ppc
)
706 while ( **ppc
>= _T('0') && **ppc
<= _T('9') )
707 CopyFmtChar(*(*ppc
)++);
710 // the translated format
713 // the original format
714 const wxChar
*m_fmtOrig
;
716 // the number of characters already copied
720 wxFormatConverter::wxFormatConverter(const wxChar
*format
)
727 if ( CopyFmtChar(*format
++) == _T('%') )
730 while ( IsFlagChar(*format
) )
731 CopyFmtChar(*format
++);
733 // and possible width
734 if ( *format
== _T('*') )
735 CopyFmtChar(*format
++);
740 if ( *format
== _T('.') )
745 // next we can have a size modifier
761 // "ll" has a different meaning!
762 if ( format
[1] != _T('l') )
774 // and finally we should have the type
779 // %C and %hC -> %c and %lC -> %lc
781 CopyFmtChar(_T('l'));
783 InsertFmtChar(*format
++ == _T('C') ? _T('c') : _T('s'));
788 // %c -> %lc but %hc stays %hc and %lc is still %lc
792 InsertFmtChar(_T('l'));
796 CopyFmtChar(_T('h'));
805 // nothing special to do
806 CopyFmtChar(*format
++);
812 #else // !wxNEED_PRINTF_CONVERSION
813 // no conversion necessary
814 #define wxFormatConverter(x) (x)
815 #endif // wxNEED_PRINTF_CONVERSION/!wxNEED_PRINTF_CONVERSION
817 // ----------------------------------------------------------------------------
818 // wxPrintf(), wxScanf() and relatives
819 // ----------------------------------------------------------------------------
821 #if defined(wxNEED_PRINTF_CONVERSION) || defined(wxNEED_WPRINTF)
823 int wxScanf( const wxChar
*format
, ... )
826 va_start(argptr
, format
);
828 int ret
= vwscanf(wxFormatConverter(format
), argptr
);
835 int wxSscanf( const wxChar
*str
, const wxChar
*format
, ... )
838 va_start(argptr
, format
);
840 int ret
= vswscanf( str
, wxFormatConverter(format
), argptr
);
847 int wxFscanf( FILE *stream
, const wxChar
*format
, ... )
850 va_start(argptr
, format
);
852 int ret
= vfwscanf(stream
, wxFormatConverter(format
), argptr
);
859 int wxPrintf( const wxChar
*format
, ... )
862 va_start(argptr
, format
);
864 int ret
= vwprintf( wxFormatConverter(format
), argptr
);
872 int wxSnprintf( wxChar
*str
, size_t size
, const wxChar
*format
, ... )
875 va_start(argptr
, format
);
877 int ret
= vswprintf( str
, size
, wxFormatConverter(format
), argptr
);
885 int wxSprintf( wxChar
*str
, const wxChar
*format
, ... )
888 va_start(argptr
, format
);
890 // callers of wxSprintf() deserve what they get
891 int ret
= vswprintf( str
, UINT_MAX
, wxFormatConverter(format
), argptr
);
898 int wxFprintf( FILE *stream
, const wxChar
*format
, ... )
901 va_start( argptr
, format
);
903 int ret
= vfwprintf( stream
, wxFormatConverter(format
), argptr
);
910 int wxVsscanf( const wxChar
*str
, const wxChar
*format
, va_list argptr
)
912 return vswscanf( str
, wxFormatConverter(format
), argptr
);
915 int wxVfprintf( FILE *stream
, const wxChar
*format
, va_list argptr
)
917 return vfwprintf( stream
, wxFormatConverter(format
), argptr
);
920 int wxVprintf( const wxChar
*format
, va_list argptr
)
922 return vwprintf( wxFormatConverter(format
), argptr
);
926 int wxVsnprintf( wxChar
*str
, size_t size
, const wxChar
*format
, va_list argptr
)
928 return vswprintf( str
, size
, wxFormatConverter(format
), argptr
);
930 #endif // wxVsnprintf
932 int wxVsprintf( wxChar
*str
, const wxChar
*format
, va_list argptr
)
934 // same as for wxSprintf()
935 return vswprintf(str
, UINT_MAX
, wxFormatConverter(format
), argptr
);
938 #endif // wxNEED_PRINTF_CONVERSION
940 // ----------------------------------------------------------------------------
941 // ctype.h stuff (currently unused)
942 // ----------------------------------------------------------------------------
944 #if defined(__WIN32__) && defined(wxNEED_WX_CTYPE_H)
945 inline WORD
wxMSW_ctype(wxChar ch
)
948 GetStringTypeEx(LOCALE_USER_DEFAULT
, CT_CTYPE1
, &ch
, 1, &ret
);
952 WXDLLEXPORT
int wxIsalnum(wxChar ch
) { return IsCharAlphaNumeric(ch
); }
953 WXDLLEXPORT
int wxIsalpha(wxChar ch
) { return IsCharAlpha(ch
); }
954 WXDLLEXPORT
int wxIsctrl(wxChar ch
) { return wxMSW_ctype(ch
) & C1_CNTRL
; }
955 WXDLLEXPORT
int wxIsdigit(wxChar ch
) { return wxMSW_ctype(ch
) & C1_DIGIT
; }
956 WXDLLEXPORT
int wxIsgraph(wxChar ch
) { return wxMSW_ctype(ch
) & (C1_DIGIT
|C1_PUNCT
|C1_ALPHA
); }
957 WXDLLEXPORT
int wxIslower(wxChar ch
) { return IsCharLower(ch
); }
958 WXDLLEXPORT
int wxIsprint(wxChar ch
) { return wxMSW_ctype(ch
) & (C1_DIGIT
|C1_SPACE
|C1_PUNCT
|C1_ALPHA
); }
959 WXDLLEXPORT
int wxIspunct(wxChar ch
) { return wxMSW_ctype(ch
) & C1_PUNCT
; }
960 WXDLLEXPORT
int wxIsspace(wxChar ch
) { return wxMSW_ctype(ch
) & C1_SPACE
; }
961 WXDLLEXPORT
int wxIsupper(wxChar ch
) { return IsCharUpper(ch
); }
962 WXDLLEXPORT
int wxIsxdigit(wxChar ch
) { return wxMSW_ctype(ch
) & C1_XDIGIT
; }
963 WXDLLEXPORT
int wxTolower(wxChar ch
) { return (wxChar
)CharLower((LPTSTR
)(ch
)); }
964 WXDLLEXPORT
int wxToupper(wxChar ch
) { return (wxChar
)CharUpper((LPTSTR
)(ch
)); }
968 WXDLLEXPORT wxChar
* wxStrdup(const wxChar
*psz
)
970 size_t size
= (wxStrlen(psz
) + 1) * sizeof(wxChar
);
971 wxChar
*ret
= (wxChar
*) malloc(size
);
972 memcpy(ret
, psz
, size
);
978 int WXDLLEXPORT
wxStricmp(const wxChar
*psz1
, const wxChar
*psz2
)
980 register wxChar c1
, c2
;
982 c1
= wxTolower(*psz1
++);
983 c2
= wxTolower(*psz2
++);
984 } while ( c1
&& (c1
== c2
) );
990 int WXDLLEXPORT
wxStrnicmp(const wxChar
*s1
, const wxChar
*s2
, size_t n
)
992 register wxChar c1
, c2
;
993 while (n
&& ((c1
= wxTolower(*s1
)) == (c2
= wxTolower(*s2
)) ) && c1
) n
--, s1
++, s2
++;
995 if (c1
< c2
) return -1;
996 if (c1
> c2
) return 1;
1003 WXDLLEXPORT wxChar
* wxStrtok(wxChar
*psz
, const wxChar
*delim
, wxChar
**save_ptr
)
1012 psz
+= wxStrspn(psz
, delim
);
1015 *save_ptr
= (wxChar
*)NULL
;
1016 return (wxChar
*)NULL
;
1020 psz
= wxStrpbrk(psz
, delim
);
1023 *save_ptr
= (wxChar
*)NULL
;
1028 *save_ptr
= psz
+ 1;
1036 WXDLLEXPORT wxWCharBuffer
wxSetlocale(int category
, const wxChar
*locale
)
1038 char *localeOld
= setlocale(category
, wxConvLocal
.cWX2MB(locale
));
1040 return wxWCharBuffer(wxConvLocal
.cMB2WC(localeOld
));
1044 // ----------------------------------------------------------------------------
1045 // string.h functions
1046 // ----------------------------------------------------------------------------
1048 #ifdef wxNEED_WX_STRING_H
1049 WXDLLEXPORT wxChar
* wxStrcat(wxChar
*dest
, const wxChar
*src
)
1052 while (*dest
) dest
++;
1053 while ((*dest
++ = *src
++));
1057 WXDLLEXPORT
const wxChar
* wxStrchr(const wxChar
*s
, wxChar c
)
1059 // be careful here as the terminating NUL makes part of the string
1069 WXDLLEXPORT
int wxStrcmp(const wxChar
*s1
, const wxChar
*s2
)
1071 while ((*s1
== *s2
) && *s1
) s1
++, s2
++;
1072 if ((wxUChar
)*s1
< (wxUChar
)*s2
) return -1;
1073 if ((wxUChar
)*s1
> (wxUChar
)*s2
) return 1;
1077 WXDLLEXPORT wxChar
* wxStrcpy(wxChar
*dest
, const wxChar
*src
)
1080 while ((*dest
++ = *src
++));
1084 WXDLLEXPORT wxChar
* wxStrncat(wxChar
*dest
, const wxChar
*src
, size_t n
)
1087 while (*dest
) dest
++;
1088 while (n
&& (*dest
++ = *src
++)) n
--;
1092 WXDLLEXPORT
int wxStrncmp(const wxChar
*s1
, const wxChar
*s2
, size_t n
)
1094 while (n
&& (*s1
== *s2
) && *s1
) n
--, s1
++, s2
++;
1096 if ((wxUChar
)*s1
< (wxUChar
)*s2
) return -1;
1097 if ((wxUChar
)*s1
> (wxUChar
)*s2
) return 1;
1102 WXDLLEXPORT wxChar
* wxStrncpy(wxChar
*dest
, const wxChar
*src
, size_t n
)
1105 while (n
&& (*dest
++ = *src
++)) n
--;
1106 while (n
) *dest
++=0, n
--; // the docs specify padding with zeroes
1110 WXDLLEXPORT
const wxChar
* wxStrpbrk(const wxChar
*s
, const wxChar
*accept
)
1112 while (*s
&& !wxStrchr(accept
, *s
))
1115 return *s
? s
: NULL
;
1118 WXDLLEXPORT
const wxChar
* wxStrrchr(const wxChar
*s
, wxChar c
)
1120 const wxChar
*ret
= NULL
;
1132 WXDLLEXPORT
size_t wxStrspn(const wxChar
*s
, const wxChar
*accept
)
1135 while (wxStrchr(accept
, *s
++)) len
++;
1139 WXDLLEXPORT
const wxChar
*wxStrstr(const wxChar
*haystack
, const wxChar
*needle
)
1141 wxCHECK_RET( needle
, NULL
, _T("NULL argument in wxStrstr") );
1143 // VZ: this is not exactly the most efficient string search algorithm...
1145 const size_t len
= wxStrlen(needle
);
1147 while ( const wxChar
*fnd
= wxStrchr(haystack
, *needle
) )
1149 if ( !wxStrncmp(fnd
, needle
, len
) )
1158 WXDLLEXPORT
double wxStrtod(const wxChar
*nptr
, wxChar
**endptr
)
1160 const wxChar
*start
= nptr
;
1162 // FIXME: only correct for C locale
1163 while (wxIsspace(*nptr
)) nptr
++;
1164 if (*nptr
== wxT('+') || *nptr
== wxT('-')) nptr
++;
1165 while (wxIsdigit(*nptr
)) nptr
++;
1166 if (*nptr
== wxT('.')) {
1168 while (wxIsdigit(*nptr
)) nptr
++;
1170 if (*nptr
== wxT('E') || *nptr
== wxT('e')) {
1172 if (*nptr
== wxT('+') || *nptr
== wxT('-')) nptr
++;
1173 while (wxIsdigit(*nptr
)) nptr
++;
1176 wxString
data(nptr
, nptr
-start
);
1177 wxWX2MBbuf dat
= data
.mb_str(wxConvLocal
);
1178 char *rdat
= wxMBSTRINGCAST dat
;
1179 double ret
= strtod(dat
, &rdat
);
1181 if (endptr
) *endptr
= (wxChar
*)(start
+ (rdat
- (const char *)dat
));
1186 WXDLLEXPORT
long int wxStrtol(const wxChar
*nptr
, wxChar
**endptr
, int base
)
1188 const wxChar
*start
= nptr
;
1190 // FIXME: only correct for C locale
1191 while (wxIsspace(*nptr
)) nptr
++;
1192 if (*nptr
== wxT('+') || *nptr
== wxT('-')) nptr
++;
1193 if (((base
== 0) || (base
== 16)) &&
1194 (nptr
[0] == wxT('0') && nptr
[1] == wxT('x'))) {
1198 else if ((base
== 0) && (nptr
[0] == wxT('0'))) base
= 8;
1199 else if (base
== 0) base
= 10;
1201 while ((wxIsdigit(*nptr
) && (*nptr
- wxT('0') < base
)) ||
1202 (wxIsalpha(*nptr
) && (wxToupper(*nptr
) - wxT('A') + 10 < base
))) nptr
++;
1204 wxString
data(nptr
, nptr
-start
);
1205 wxWX2MBbuf dat
= data
.mb_str(wxConvLocal
);
1206 char *rdat
= wxMBSTRINGCAST dat
;
1207 long int ret
= strtol(dat
, &rdat
, base
);
1209 if (endptr
) *endptr
= (wxChar
*)(start
+ (rdat
- (const char *)dat
));
1213 #endif // wxNEED_WX_STRING_H
1215 #ifdef wxNEED_WX_STDIO_H
1216 WXDLLEXPORT
FILE * wxFopen(const wxChar
*path
, const wxChar
*mode
)
1218 char mode_buffer
[10];
1219 for (size_t i
= 0; i
< wxStrlen(mode
)+1; i
++)
1220 mode_buffer
[i
] = (char) mode
[i
];
1222 return fopen( wxConvFile
.cWX2MB(path
), mode_buffer
);
1225 WXDLLEXPORT
FILE * wxFreopen(const wxChar
*path
, const wxChar
*mode
, FILE *stream
)
1227 char mode_buffer
[10];
1228 for (size_t i
= 0; i
< wxStrlen(mode
)+1; i
++)
1229 mode_buffer
[i
] = (char) mode
[i
];
1231 return freopen( wxConvFile
.cWX2MB(path
), mode_buffer
, stream
);
1234 WXDLLEXPORT
int wxRemove(const wxChar
*path
)
1236 return remove( wxConvFile
.cWX2MB(path
) );
1239 WXDLLEXPORT
int wxRename(const wxChar
*oldpath
, const wxChar
*newpath
)
1241 return rename( wxConvFile
.cWX2MB(oldpath
), wxConvFile
.cWX2MB(newpath
) );
1246 double WXDLLEXPORT
wxAtof(const wxChar
*psz
)
1248 return atof(wxConvLocal
.cWX2MB(psz
));
1252 #ifdef wxNEED_WX_STDLIB_H
1253 int WXDLLEXPORT
wxAtoi(const wxChar
*psz
)
1255 return atoi(wxConvLocal
.cWX2MB(psz
));
1258 long WXDLLEXPORT
wxAtol(const wxChar
*psz
)
1260 return atol(wxConvLocal
.cWX2MB(psz
));
1263 wxChar
* WXDLLEXPORT
wxGetenv(const wxChar
*name
)
1265 static wxHashTable env
;
1267 // check if we already have stored the converted env var
1268 wxObject
*data
= env
.Get(name
);
1271 // nope, retrieve it,
1273 wxCharBuffer buffer
= wxConvLocal
.cWX2MB(name
);
1274 // printf( "buffer %s\n", (const char*) buffer );
1275 const char *val
= getenv( (const char *)buffer
);
1277 const char *val
= getenv( name
);
1280 if (!val
) return (wxChar
*)NULL
;
1281 // printf( "home %s\n", val );
1284 #ifdef wxUSE_UNICODE
1285 data
= (wxObject
*)new wxString(val
, wxConvLocal
);
1287 data
= (wxObject
*)new wxString(val
);
1291 env
.Put(name
, data
);
1293 // return converted env var
1294 return (wxChar
*)((wxString
*)data
)->c_str();
1297 int WXDLLEXPORT
wxSystem(const wxChar
*psz
)
1299 return system(wxConvLocal
.cWX2MB(psz
));
1304 #ifdef wxNEED_WX_TIME_H
1305 WXDLLEXPORT
size_t wxStrftime(wxChar
*s
, size_t max
, const wxChar
*fmt
, const struct tm
*tm
)
1309 char *buf
= (char *)malloc(max
);
1310 size_t ret
= strftime(buf
, max
, wxConvLocal
.cWX2MB(fmt
), tm
);
1313 wxStrcpy(s
, wxConvLocal
.cMB2WX(buf
));