1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: Type-safe ANSI and Unicode builds compatible wrappers for
5 // Author: Joel Farley, Ove K�ven
6 // Modified by: Vadim Zeitlin, Robert Roebling, Ron Lee, Vaclav Slavik
9 // Copyright: (c) 1998-2006 wxWidgets dev team
10 // Licence: wxWindows licence
11 ///////////////////////////////////////////////////////////////////////////////
16 // NB: User code should include wx/crt.h instead of including this
19 #include "wx/wxcrtbase.h"
20 #include "wx/string.h"
22 #if defined (__VISUALC__) || defined (__DMC__)
23 #define HAVE_NO_VSSCANF 1
26 // ============================================================================
28 // ============================================================================
30 /* checks whether the passed in pointer is NULL and if the string is empty */
31 inline bool wxIsEmpty(const char *s
) { return !s
|| !*s
; }
32 inline bool wxIsEmpty(const wchar_t *s
) { return !s
|| !*s
; }
33 inline bool wxIsEmpty(const wxCharBuffer
& s
) { return wxIsEmpty(s
.data()); }
34 inline bool wxIsEmpty(const wxWCharBuffer
& s
) { return wxIsEmpty(s
.data()); }
35 inline bool wxIsEmpty(const wxString
& s
) { return s
.empty(); }
36 inline bool wxIsEmpty(const wxCStrData
& s
) { return s
.AsString().empty(); }
39 // FIXME-UTF8: get rid of this, it's ANSI only anyway
40 WXDLLIMPEXP_BASE
bool wxOKlibc(); /* for internal use */
43 /* multibyte to wide char conversion functions and macros */
46 /* multibyte<->widechar conversion */
47 WXDLLIMPEXP_BASE
size_t wxMB2WC(wchar_t *buf
, const char *psz
, size_t n
);
48 WXDLLIMPEXP_BASE
size_t wxWC2MB(char *buf
, const wchar_t *psz
, size_t n
);
51 #define wxMB2WX wxMB2WC
52 #define wxWX2MB wxWC2MB
53 #define wxWC2WX wxStrncpy
54 #define wxWX2WC wxStrncpy
56 #define wxMB2WX wxStrncpy
57 #define wxWX2MB wxStrncpy
58 #define wxWC2WX wxWC2MB
59 #define wxWX2WC wxMB2WC
61 #else /* !wxUSE_UNICODE */
62 /* No wxUSE_WCHAR_T: we have to do something (JACS) */
63 #define wxMB2WC wxStrncpy
64 #define wxWC2MB wxStrncpy
65 #define wxMB2WX wxStrncpy
66 #define wxWX2MB wxStrncpy
67 #define wxWC2WX wxWC2MB
68 #define wxWX2WC wxMB2WC
72 // RN: We could do the usual tricky compiler detection here,
73 // and use their variant (such as wmemchr, etc.). The problem
74 // is that these functions are quite rare, even though they are
75 // part of the current POSIX standard. In addition, most compilers
76 // (including even MSC) inline them just like we do right in their
82 //implement our own wmem variants
83 inline wxChar
* wxTmemchr(const wxChar
* s
, wxChar c
, size_t l
)
85 for(;l
&& *s
!= c
;--l
, ++s
) {}
92 inline int wxTmemcmp(const wxChar
* sz1
, const wxChar
* sz2
, size_t len
)
94 for(; *sz1
== *sz2
&& len
; --len
, ++sz1
, ++sz2
) {}
97 return *sz1
< *sz2
? -1 : *sz1
> *sz2
;
102 inline wxChar
* wxTmemcpy(wxChar
* szOut
, const wxChar
* szIn
, size_t len
)
104 return (wxChar
*) memcpy(szOut
, szIn
, len
* sizeof(wxChar
));
107 inline wxChar
* wxTmemmove(wxChar
* szOut
, const wxChar
* szIn
, size_t len
)
109 return (wxChar
*) memmove(szOut
, szIn
, len
* sizeof(wxChar
));
112 inline wxChar
* wxTmemset(wxChar
* szOut
, const wxChar cIn
, size_t len
)
114 wxChar
* szRet
= szOut
;
121 #endif /* wxUSE_UNICODE */
123 // provide trivial wrappers for char* versions for both ANSI and Unicode builds
124 // (notice that these intentionally return "char *" and not "void *" unlike the
125 // standard memxxx() for symmetry with the wide char versions):
126 inline char* wxTmemchr(const char* s
, char c
, size_t len
)
127 { return (char*)memchr(s
, c
, len
); }
128 inline int wxTmemcmp(const char* sz1
, const char* sz2
, size_t len
)
129 { return memcmp(sz1
, sz2
, len
); }
130 inline char* wxTmemcpy(char* szOut
, const char* szIn
, size_t len
)
131 { return (char*)memcpy(szOut
, szIn
, len
); }
132 inline char* wxTmemmove(char* szOut
, const char* szIn
, size_t len
)
133 { return (char*)memmove(szOut
, szIn
, len
); }
134 inline char* wxTmemset(char* szOut
, const char cIn
, size_t len
)
135 { return (char*)memset(szOut
, cIn
, len
); }
138 // ============================================================================
139 // wx wrappers for CRT functions in both char* and wchar_t* versions
140 // ============================================================================
142 // A few notes on implementation of these wrappers:
144 // We need both char* and wchar_t* versions of functions like wxStrlen() for
145 // compatibility with both ANSI and Unicode builds.
147 // This makes passing wxString or c_str()/mb_str()/wc_str() result to them
148 // ambiguous, so we need to provide overrides for that as well (in cases where
151 // We can do this without problems for some functions (wxStrlen()), but in some
152 // cases, we can't stay compatible with both ANSI and Unicode builds, e.g. for
153 // wxStrcpy(const wxString&), which can only return either char* or wchar_t*.
154 // In these cases, we preserve ANSI build compatibility by returning char*.
156 // ----------------------------------------------------------------------------
158 // ----------------------------------------------------------------------------
160 // NB: we can't provide const wchar_t* (= wxChar*) overload, because calling
161 // wxSetlocale(category, NULL) -- which is a common thing to do -- would be
163 WXDLLIMPEXP_BASE
char* wxSetlocale(int category
, const char *locale
);
164 inline char* wxSetlocale(int category
, const wxCharBuffer
& locale
)
165 { return wxSetlocale(category
, locale
.data()); }
166 inline char* wxSetlocale(int category
, const wxString
& locale
)
167 { return wxSetlocale(category
, locale
.mb_str()); }
168 inline char* wxSetlocale(int category
, const wxCStrData
& locale
)
169 { return wxSetlocale(category
, locale
.AsCharBuf()); }
171 // ----------------------------------------------------------------------------
173 // ----------------------------------------------------------------------------
175 /* safe version of strlen() (returns 0 if passed NULL pointer) */
176 // NB: these are defined in wxcrtbase.h, see the comment there
177 // inline size_t wxStrlen(const char *s) { return s ? strlen(s) : 0; }
178 // inline size_t wxStrlen(const wchar_t *s) { return s ? wxCRT_Strlen_(s) : 0; }
179 inline size_t wxStrlen(const wxCharBuffer
& s
) { return wxStrlen(s
.data()); }
180 inline size_t wxStrlen(const wxWCharBuffer
& s
) { return wxStrlen(s
.data()); }
181 inline size_t wxStrlen(const wxString
& s
) { return s
.length(); }
182 inline size_t wxStrlen(const wxCStrData
& s
) { return s
.AsString().length(); }
184 // NB: these are defined in wxcrtbase.h, see the comment there
185 // inline char* wxStrdup(const char *s) { return wxStrdupA(s); }
186 // inline wchar_t* wxStrdup(const wchar_t *s) { return wxStrdupW(s); }
187 inline char* wxStrdup(const wxCharBuffer
& s
) { return wxStrdup(s
.data()); }
188 inline wchar_t* wxStrdup(const wxWCharBuffer
& s
) { return wxStrdup(s
.data()); }
189 inline char* wxStrdup(const wxString
& s
) { return wxStrdup(s
.mb_str()); }
190 inline char* wxStrdup(const wxCStrData
& s
) { return wxStrdup(s
.AsCharBuf()); }
192 inline char *wxStrcpy(char *dest
, const char *src
)
193 { return wxCRT_StrcpyA(dest
, src
); }
194 inline wchar_t *wxStrcpy(wchar_t *dest
, const wchar_t *src
)
195 { return wxCRT_StrcpyW(dest
, src
); }
196 inline char *wxStrcpy(char *dest
, const wxString
& src
)
197 { return wxCRT_StrcpyA(dest
, src
.mb_str()); }
198 inline char *wxStrcpy(char *dest
, const wxCStrData
& src
)
199 { return wxCRT_StrcpyA(dest
, src
.AsCharBuf()); }
200 inline char *wxStrcpy(char *dest
, const wxCharBuffer
& src
)
201 { return wxCRT_StrcpyA(dest
, src
.data()); }
202 inline wchar_t *wxStrcpy(wchar_t *dest
, const wxString
& src
)
203 { return wxCRT_StrcpyW(dest
, src
.wc_str()); }
204 inline wchar_t *wxStrcpy(wchar_t *dest
, const wxCStrData
& src
)
205 { return wxCRT_StrcpyW(dest
, src
.AsWCharBuf()); }
206 inline wchar_t *wxStrcpy(wchar_t *dest
, const wxWCharBuffer
& src
)
207 { return wxCRT_StrcpyW(dest
, src
.data()); }
208 inline char *wxStrcpy(char *dest
, const wchar_t *src
)
209 { return wxCRT_StrcpyA(dest
, wxConvLibc
.cWC2MB(src
)); }
210 inline wchar_t *wxStrcpy(wchar_t *dest
, const char *src
)
211 { return wxCRT_StrcpyW(dest
, wxConvLibc
.cMB2WC(src
)); }
213 inline char *wxStrncpy(char *dest
, const char *src
, size_t n
)
214 { return wxCRT_StrncpyA(dest
, src
, n
); }
215 inline wchar_t *wxStrncpy(wchar_t *dest
, const wchar_t *src
, size_t n
)
216 { return wxCRT_StrncpyW(dest
, src
, n
); }
217 inline char *wxStrncpy(char *dest
, const wxString
& src
, size_t n
)
218 { return wxCRT_StrncpyA(dest
, src
.mb_str(), n
); }
219 inline char *wxStrncpy(char *dest
, const wxCStrData
& src
, size_t n
)
220 { return wxCRT_StrncpyA(dest
, src
.AsCharBuf(), n
); }
221 inline char *wxStrncpy(char *dest
, const wxCharBuffer
& src
, size_t n
)
222 { return wxCRT_StrncpyA(dest
, src
.data(), n
); }
223 inline wchar_t *wxStrncpy(wchar_t *dest
, const wxString
& src
, size_t n
)
224 { return wxCRT_StrncpyW(dest
, src
.wc_str(), n
); }
225 inline wchar_t *wxStrncpy(wchar_t *dest
, const wxCStrData
& src
, size_t n
)
226 { return wxCRT_StrncpyW(dest
, src
.AsWCharBuf(), n
); }
227 inline wchar_t *wxStrncpy(wchar_t *dest
, const wxWCharBuffer
& src
, size_t n
)
228 { return wxCRT_StrncpyW(dest
, src
.data(), n
); }
229 inline char *wxStrncpy(char *dest
, const wchar_t *src
, size_t n
)
230 { return wxCRT_StrncpyA(dest
, wxConvLibc
.cWC2MB(src
), n
); }
231 inline wchar_t *wxStrncpy(wchar_t *dest
, const char *src
, size_t n
)
232 { return wxCRT_StrncpyW(dest
, wxConvLibc
.cMB2WC(src
), n
); }
234 inline char *wxStrcat(char *dest
, const char *src
)
235 { return wxCRT_StrcatA(dest
, src
); }
236 inline wchar_t *wxStrcat(wchar_t *dest
, const wchar_t *src
)
237 { return wxCRT_StrcatW(dest
, src
); }
238 inline char *wxStrcat(char *dest
, const wxString
& src
)
239 { return wxCRT_StrcatA(dest
, src
.mb_str()); }
240 inline char *wxStrcat(char *dest
, const wxCStrData
& src
)
241 { return wxCRT_StrcatA(dest
, src
.AsCharBuf()); }
242 inline char *wxStrcat(char *dest
, const wxCharBuffer
& src
)
243 { return wxCRT_StrcatA(dest
, src
.data()); }
244 inline wchar_t *wxStrcat(wchar_t *dest
, const wxString
& src
)
245 { return wxCRT_StrcatW(dest
, src
.wc_str()); }
246 inline wchar_t *wxStrcat(wchar_t *dest
, const wxCStrData
& src
)
247 { return wxCRT_StrcatW(dest
, src
.AsWCharBuf()); }
248 inline wchar_t *wxStrcat(wchar_t *dest
, const wxWCharBuffer
& src
)
249 { return wxCRT_StrcatW(dest
, src
.data()); }
250 inline char *wxStrcat(char *dest
, const wchar_t *src
)
251 { return wxCRT_StrcatA(dest
, wxConvLibc
.cWC2MB(src
)); }
252 inline wchar_t *wxStrcat(wchar_t *dest
, const char *src
)
253 { return wxCRT_StrcatW(dest
, wxConvLibc
.cMB2WC(src
)); }
255 inline char *wxStrncat(char *dest
, const char *src
, size_t n
)
256 { return wxCRT_StrncatA(dest
, src
, n
); }
257 inline wchar_t *wxStrncat(wchar_t *dest
, const wchar_t *src
, size_t n
)
258 { return wxCRT_StrncatW(dest
, src
, n
); }
259 inline char *wxStrncat(char *dest
, const wxString
& src
, size_t n
)
260 { return wxCRT_StrncatA(dest
, src
.mb_str(), n
); }
261 inline char *wxStrncat(char *dest
, const wxCStrData
& src
, size_t n
)
262 { return wxCRT_StrncatA(dest
, src
.AsCharBuf(), n
); }
263 inline char *wxStrncat(char *dest
, const wxCharBuffer
& src
, size_t n
)
264 { return wxCRT_StrncatA(dest
, src
.data(), n
); }
265 inline wchar_t *wxStrncat(wchar_t *dest
, const wxString
& src
, size_t n
)
266 { return wxCRT_StrncatW(dest
, src
.wc_str(), n
); }
267 inline wchar_t *wxStrncat(wchar_t *dest
, const wxCStrData
& src
, size_t n
)
268 { return wxCRT_StrncatW(dest
, src
.AsWCharBuf(), n
); }
269 inline wchar_t *wxStrncat(wchar_t *dest
, const wxWCharBuffer
& src
, size_t n
)
270 { return wxCRT_StrncatW(dest
, src
.data(), n
); }
271 inline char *wxStrncat(char *dest
, const wchar_t *src
, size_t n
)
272 { return wxCRT_StrncatA(dest
, wxConvLibc
.cWC2MB(src
), n
); }
273 inline wchar_t *wxStrncat(wchar_t *dest
, const char *src
, size_t n
)
274 { return wxCRT_StrncatW(dest
, wxConvLibc
.cMB2WC(src
), n
); }
277 #define WX_STR_DECL(name, T1, T2) name(T1 s1, T2 s2)
278 #define WX_STR_CALL(func, a1, a2) func(a1, a2)
280 // This macro defines string function for all possible variants of arguments,
281 // except for those taking wxString or wxCStrData as second argument.
283 // rettype - return type
284 // name - name of the (overloaded) function to define
285 // crtA - function to call for char* versions (takes two arguments)
286 // crtW - ditto for wchar_t* function
287 // forString - function to call when the *first* argument is wxString;
288 // the second argument can be any string type, so this is
289 // typically a template
290 #define WX_STR_FUNC_NO_INVERT(rettype, name, crtA, crtW, forString) \
291 inline rettype WX_STR_DECL(name, const char *, const char *) \
292 { return WX_STR_CALL(crtA, s1, s2); } \
293 inline rettype WX_STR_DECL(name, const char *, const wchar_t *) \
294 { return WX_STR_CALL(forString, wxString(s1), wxString(s2)); } \
295 inline rettype WX_STR_DECL(name, const char *, const wxCharBuffer&) \
296 { return WX_STR_CALL(crtA, s1, s2.data()); } \
297 inline rettype WX_STR_DECL(name, const char *, const wxWCharBuffer&) \
298 { return WX_STR_CALL(forString, wxString(s1), s2.data()); } \
300 inline rettype WX_STR_DECL(name, const wchar_t *, const wchar_t *) \
301 { return WX_STR_CALL(crtW, s1, s2); } \
302 inline rettype WX_STR_DECL(name, const wchar_t *, const char *) \
303 { return WX_STR_CALL(forString, wxString(s1), wxString(s2)); } \
304 inline rettype WX_STR_DECL(name, const wchar_t *, const wxWCharBuffer&) \
305 { return WX_STR_CALL(crtW, s1, s2.data()); } \
306 inline rettype WX_STR_DECL(name, const wchar_t *, const wxCharBuffer&) \
307 { return WX_STR_CALL(forString, wxString(s1), s2.data()); } \
309 inline rettype WX_STR_DECL(name, const wxCharBuffer&, const char *) \
310 { return WX_STR_CALL(crtA, s1.data(), s2); } \
311 inline rettype WX_STR_DECL(name, const wxCharBuffer&, const wchar_t *) \
312 { return WX_STR_CALL(forString, wxString(s1), wxString(s2)); } \
313 inline rettype WX_STR_DECL(name, const wxCharBuffer&, const wxCharBuffer&)\
314 { return WX_STR_CALL(crtA, s1.data(), s2.data()); } \
315 inline rettype WX_STR_DECL(name, const wxCharBuffer&, const wxWCharBuffer&) \
316 { return WX_STR_CALL(forString, wxString(s1), wxString(s2)); } \
318 inline rettype WX_STR_DECL(name, const wxWCharBuffer&, const wchar_t *) \
319 { return WX_STR_CALL(crtW, s1.data(), s2); } \
320 inline rettype WX_STR_DECL(name, const wxWCharBuffer&, const char *) \
321 { return WX_STR_CALL(forString, wxString(s1), wxString(s2)); } \
322 inline rettype WX_STR_DECL(name, const wxWCharBuffer&, const wxWCharBuffer&) \
323 { return WX_STR_CALL(crtW, s1.data(), s2.data()); } \
324 inline rettype WX_STR_DECL(name, const wxWCharBuffer&, const wxCharBuffer&) \
325 { return WX_STR_CALL(forString, wxString(s1), wxString(s2)); } \
327 inline rettype WX_STR_DECL(name, const wxString&, const char*) \
328 { return WX_STR_CALL(forString, s1, s2); } \
329 inline rettype WX_STR_DECL(name, const wxString&, const wchar_t*) \
330 { return WX_STR_CALL(forString, s1, s2); } \
331 inline rettype WX_STR_DECL(name, const wxString&, const wxCharBuffer&) \
332 { return WX_STR_CALL(forString, s1, s2); } \
333 inline rettype WX_STR_DECL(name, const wxString&, const wxWCharBuffer&) \
334 { return WX_STR_CALL(forString, s1, s2); } \
335 inline rettype WX_STR_DECL(name, const wxString&, const wxString&) \
336 { return WX_STR_CALL(forString, s1, s2); } \
337 inline rettype WX_STR_DECL(name, const wxString&, const wxCStrData&) \
338 { return WX_STR_CALL(forString, s1, s2); } \
340 inline rettype WX_STR_DECL(name, const wxCStrData&, const char*) \
341 { return WX_STR_CALL(forString, s1.AsString(), s2); } \
342 inline rettype WX_STR_DECL(name, const wxCStrData&, const wchar_t*) \
343 { return WX_STR_CALL(forString, s1.AsString(), s2); } \
344 inline rettype WX_STR_DECL(name, const wxCStrData&, const wxCharBuffer&) \
345 { return WX_STR_CALL(forString, s1.AsString(), s2); } \
346 inline rettype WX_STR_DECL(name, const wxCStrData&, const wxWCharBuffer&) \
347 { return WX_STR_CALL(forString, s1.AsString(), s2); } \
348 inline rettype WX_STR_DECL(name, const wxCStrData&, const wxString&) \
349 { return WX_STR_CALL(forString, s1.AsString(), s2); } \
350 inline rettype WX_STR_DECL(name, const wxCStrData&, const wxCStrData&) \
351 { return WX_STR_CALL(forString, s1.AsString(), s2); }
353 // This defines strcmp-like function, i.e. one returning the result of
354 // comparison; see WX_STR_FUNC_NO_INVERT for explanation of the arguments
355 #define WX_STRCMP_FUNC(name, crtA, crtW, forString) \
356 WX_STR_FUNC_NO_INVERT(int, name, crtA, crtW, forString) \
358 inline int WX_STR_DECL(name, const char *, const wxCStrData&) \
359 { return -WX_STR_CALL(forString, s2.AsString(), s1); } \
360 inline int WX_STR_DECL(name, const char *, const wxString&) \
361 { return -WX_STR_CALL(forString, s2, s1); } \
363 inline int WX_STR_DECL(name, const wchar_t *, const wxCStrData&) \
364 { return -WX_STR_CALL(forString, s2.AsString(), s1); } \
365 inline int WX_STR_DECL(name, const wchar_t *, const wxString&) \
366 { return -WX_STR_CALL(forString, s2, s1); } \
368 inline int WX_STR_DECL(name, const wxCharBuffer&, const wxCStrData&) \
369 { return -WX_STR_CALL(forString, s2.AsString(), s1.data()); } \
370 inline int WX_STR_DECL(name, const wxCharBuffer&, const wxString&) \
371 { return -WX_STR_CALL(forString, s2, s1.data()); } \
373 inline int WX_STR_DECL(name, const wxWCharBuffer&, const wxCStrData&) \
374 { return -WX_STR_CALL(forString, s2.AsString(), s1.data()); } \
375 inline int WX_STR_DECL(name, const wxWCharBuffer&, const wxString&) \
376 { return -WX_STR_CALL(forString, s2, s1.data()); }
379 // This defines a string function that is *not* strcmp-like, i.e. doesn't
380 // return the result of comparison and so if the second argument is a string,
381 // it has to be converted to char* or wchar_t*
382 #define WX_STR_FUNC(rettype, name, crtA, crtW, forString) \
383 WX_STR_FUNC_NO_INVERT(rettype, name, crtA, crtW, forString) \
385 inline rettype WX_STR_DECL(name, const char *, const wxCStrData&) \
386 { return WX_STR_CALL(crtA, s1, s2.AsCharBuf()); } \
387 inline rettype WX_STR_DECL(name, const char *, const wxString&) \
388 { return WX_STR_CALL(crtA, s1, s2.mb_str()); } \
390 inline rettype WX_STR_DECL(name, const wchar_t *, const wxCStrData&) \
391 { return WX_STR_CALL(crtW, s1, s2.AsWCharBuf()); } \
392 inline rettype WX_STR_DECL(name, const wchar_t *, const wxString&) \
393 { return WX_STR_CALL(crtW, s1, s2.wc_str()); } \
395 inline rettype WX_STR_DECL(name, const wxCharBuffer&, const wxCStrData&) \
396 { return WX_STR_CALL(crtA, s1.data(), s2.AsCharBuf()); } \
397 inline rettype WX_STR_DECL(name, const wxCharBuffer&, const wxString&) \
398 { return WX_STR_CALL(crtA, s1.data(), s2.mb_str()); } \
400 inline rettype WX_STR_DECL(name, const wxWCharBuffer&, const wxCStrData&) \
401 { return WX_STR_CALL(crtW, s1.data(), s2.AsWCharBuf()); } \
402 inline rettype WX_STR_DECL(name, const wxWCharBuffer&, const wxString&) \
403 { return WX_STR_CALL(crtW, s1.data(), s2.wc_str()); }
406 inline int wxStrcmp_String(const wxString
& s1
, const T
& s2
)
407 { return s1
.compare(s2
); }
408 WX_STRCMP_FUNC(wxStrcmp
, wxCRT_StrcmpA
, wxCRT_StrcmpW
, wxStrcmp_String
)
411 inline int wxStricmp_String(const wxString
& s1
, const T
& s2
)
412 { return s1
.CmpNoCase(s2
); }
413 WX_STRCMP_FUNC(wxStricmp
, wxCRT_StricmpA
, wxCRT_StricmpW
, wxStricmp_String
)
415 #if defined(wxCRT_StrcollA) && defined(wxCRT_StrcollW)
417 // GCC 3.3 and other compilers have a bug that causes it to fail compilation if
418 // the template's implementation uses overloaded function declared later (see
419 // the wxStrcoll() call in wxStrcoll_String<T>()), so we have to
420 // forward-declare the template and implement it below WX_STRCMP_FUNC. OTOH,
421 // this fails to compile with VC6, so don't do it for VC. It also causes
422 // problems with GCC visibility in newer GCC versions.
423 #if !(defined(__VISUALC__) || wxCHECK_GCC_VERSION(3,4))
425 inline int wxStrcoll_String(const wxString
& s1
, const T
& s2
);
426 WX_STRCMP_FUNC(wxStrcoll
, wxCRT_StrcollA
, wxCRT_StrcollW
, wxStrcoll_String
)
427 #endif // !__VISUALC__
430 inline int wxStrcoll_String(const wxString
& s1
, const T
& s2
)
433 // NB: strcoll() doesn't work correctly on UTF-8 strings, so we have to use
434 // wc_str() even if wxUSE_UNICODE_UTF8; the (const wchar_t*) cast is
435 // there just as optimization to avoid going through
436 // wxStrcoll<wxWCharBuffer>:
437 return wxStrcoll((const wchar_t*)s1
.wc_str(), s2
);
439 return wxStrcoll((const char*)s1
.mb_str(), s2
);
443 #if defined(__VISUALC__) || wxCHECK_GCC_VERSION(3,4)
444 // this is exactly the same WX_STRCMP_FUNC line as above wxStrcoll_String<>
445 WX_STRCMP_FUNC(wxStrcoll
, wxCRT_StrcollA
, wxCRT_StrcollW
, wxStrcoll_String
)
448 #endif // defined(wxCRT_Strcoll[AW])
451 inline size_t wxStrspn_String(const wxString
& s1
, const T
& s2
)
453 size_t pos
= s1
.find_first_not_of(s2
);
454 return pos
== wxString::npos
? s1
.length() : pos
;
456 WX_STR_FUNC_NO_INVERT(size_t, wxStrspn
,
457 wxCRT_StrspnA
, wxCRT_StrspnW
, wxStrspn_String
)
460 inline size_t wxStrcspn_String(const wxString
& s1
, const T
& s2
)
462 size_t pos
= s1
.find_first_of(s2
);
463 return pos
== wxString::npos
? s1
.length() : pos
;
465 WX_STR_FUNC_NO_INVERT(size_t, wxStrcspn
,
466 wxCRT_StrcspnA
, wxCRT_StrcspnW
, wxStrcspn_String
)
470 #define WX_STR_DECL(name, T1, T2) name(T1 s1, T2 s2, size_t n)
471 #define WX_STR_CALL(func, a1, a2) func(a1, a2, n)
474 inline int wxStrncmp_String(const wxString
& s1
, const T
& s2
, size_t n
)
475 { return s1
.compare(0, n
, s2
, 0, n
); }
476 WX_STRCMP_FUNC(wxStrncmp
, wxCRT_StrncmpA
, wxCRT_StrncmpW
, wxStrncmp_String
)
479 inline int wxStrnicmp_String(const wxString
& s1
, const T
& s2
, size_t n
)
480 { return s1
.substr(0, n
).CmpNoCase(wxString(s2
).substr(0, n
)); }
481 WX_STRCMP_FUNC(wxStrnicmp
, wxCRT_StrnicmpA
, wxCRT_StrnicmpW
, wxStrnicmp_String
)
485 #undef WX_STRCMP_FUNC
487 #undef WX_STR_FUNC_NO_INVERT
489 #if defined(wxCRT_StrxfrmA) && defined(wxCRT_StrxfrmW)
491 inline size_t wxStrxfrm(char *dest
, const char *src
, size_t n
)
492 { return wxCRT_StrxfrmA(dest
, src
, n
); }
493 inline size_t wxStrxfrm(wchar_t *dest
, const wchar_t *src
, size_t n
)
494 { return wxCRT_StrxfrmW(dest
, src
, n
); }
496 inline size_t wxStrxfrm(T
*dest
, const wxCharTypeBuffer
<T
>& src
, size_t n
)
497 { return wxStrxfrm(dest
, src
.data(), n
); }
498 inline size_t wxStrxfrm(char *dest
, const wxString
& src
, size_t n
)
499 { return wxCRT_StrxfrmA(dest
, src
.mb_str(), n
); }
500 inline size_t wxStrxfrm(wchar_t *dest
, const wxString
& src
, size_t n
)
501 { return wxCRT_StrxfrmW(dest
, src
.wc_str(), n
); }
502 inline size_t wxStrxfrm(char *dest
, const wxCStrData
& src
, size_t n
)
503 { return wxCRT_StrxfrmA(dest
, src
.AsCharBuf(), n
); }
504 inline size_t wxStrxfrm(wchar_t *dest
, const wxCStrData
& src
, size_t n
)
505 { return wxCRT_StrxfrmW(dest
, src
.AsWCharBuf(), n
); }
507 #endif // defined(wxCRT_Strxfrm[AW])
509 inline char *wxStrtok(char *str
, const char *delim
, char **saveptr
)
510 { return wxCRT_StrtokA(str
, delim
, saveptr
); }
511 inline wchar_t *wxStrtok(wchar_t *str
, const wchar_t *delim
, wchar_t **saveptr
)
512 { return wxCRT_StrtokW(str
, delim
, saveptr
); }
514 inline T
*wxStrtok(T
*str
, const wxCharTypeBuffer
<T
>& delim
, T
**saveptr
)
515 { return wxStrtok(str
, delim
.data(), saveptr
); }
516 inline char *wxStrtok(char *str
, const wxCStrData
& delim
, char **saveptr
)
517 { return wxCRT_StrtokA(str
, delim
.AsCharBuf(), saveptr
); }
518 inline wchar_t *wxStrtok(wchar_t *str
, const wxCStrData
& delim
, wchar_t **saveptr
)
519 { return wxCRT_StrtokW(str
, delim
.AsWCharBuf(), saveptr
); }
520 inline char *wxStrtok(char *str
, const wxString
& delim
, char **saveptr
)
521 { return wxCRT_StrtokA(str
, delim
.mb_str(), saveptr
); }
522 inline wchar_t *wxStrtok(wchar_t *str
, const wxString
& delim
, wchar_t **saveptr
)
523 { return wxCRT_StrtokW(str
, delim
.wc_str(), saveptr
); }
525 inline const char *wxStrstr(const char *haystack
, const char *needle
)
526 { return wxCRT_StrstrA(haystack
, needle
); }
527 inline const wchar_t *wxStrstr(const wchar_t *haystack
, const wchar_t *needle
)
528 { return wxCRT_StrstrW(haystack
, needle
); }
529 inline const char *wxStrstr(const char *haystack
, const wxString
& needle
)
530 { return wxCRT_StrstrA(haystack
, needle
.mb_str()); }
531 inline const wchar_t *wxStrstr(const wchar_t *haystack
, const wxString
& needle
)
532 { return wxCRT_StrstrW(haystack
, needle
.wc_str()); }
533 // these functions return char* pointer into the non-temporary conversion buffer
534 // used by c_str()'s implicit conversion to char*, for ANSI build compatibility
535 inline const char *wxStrstr(const wxString
& haystack
, const wxString
& needle
)
536 { return wxCRT_StrstrA(haystack
.c_str(), needle
.mb_str()); }
537 inline const char *wxStrstr(const wxCStrData
& haystack
, const wxString
& needle
)
538 { return wxCRT_StrstrA(haystack
, needle
.mb_str()); }
539 inline const char *wxStrstr(const wxCStrData
& haystack
, const wxCStrData
& needle
)
540 { return wxCRT_StrstrA(haystack
, needle
.AsCharBuf()); }
541 // if 'needle' is char/wchar_t, then the same is probably wanted as return value
542 inline const char *wxStrstr(const wxString
& haystack
, const char *needle
)
543 { return wxCRT_StrstrA(haystack
.c_str(), needle
); }
544 inline const char *wxStrstr(const wxCStrData
& haystack
, const char *needle
)
545 { return wxCRT_StrstrA(haystack
, needle
); }
546 inline const wchar_t *wxStrstr(const wxString
& haystack
, const wchar_t *needle
)
547 { return wxCRT_StrstrW(haystack
.c_str(), needle
); }
548 inline const wchar_t *wxStrstr(const wxCStrData
& haystack
, const wchar_t *needle
)
549 { return wxCRT_StrstrW(haystack
, needle
); }
551 inline const char *wxStrchr(const char *s
, char c
)
552 { return wxCRT_StrchrA(s
, c
); }
553 inline const wchar_t *wxStrchr(const wchar_t *s
, wchar_t c
)
554 { return wxCRT_StrchrW(s
, c
); }
555 inline const char *wxStrrchr(const char *s
, char c
)
556 { return wxCRT_StrrchrA(s
, c
); }
557 inline const wchar_t *wxStrrchr(const wchar_t *s
, wchar_t c
)
558 { return wxCRT_StrrchrW(s
, c
); }
559 inline const char *wxStrchr(const char *s
, const wxUniChar
& c
)
560 { return wxCRT_StrchrA(s
, (char)c
); }
561 inline const wchar_t *wxStrchr(const wchar_t *s
, const wxUniChar
& c
)
562 { return wxCRT_StrchrW(s
, (wchar_t)c
); }
563 inline const char *wxStrrchr(const char *s
, const wxUniChar
& c
)
564 { return wxCRT_StrrchrA(s
, (char)c
); }
565 inline const wchar_t *wxStrrchr(const wchar_t *s
, const wxUniChar
& c
)
566 { return wxCRT_StrrchrW(s
, (wchar_t)c
); }
567 inline const char *wxStrchr(const char *s
, const wxUniCharRef
& c
)
568 { return wxCRT_StrchrA(s
, (char)c
); }
569 inline const wchar_t *wxStrchr(const wchar_t *s
, const wxUniCharRef
& c
)
570 { return wxCRT_StrchrW(s
, (wchar_t)c
); }
571 inline const char *wxStrrchr(const char *s
, const wxUniCharRef
& c
)
572 { return wxCRT_StrrchrA(s
, (char)c
); }
573 inline const wchar_t *wxStrrchr(const wchar_t *s
, const wxUniCharRef
& c
)
574 { return wxCRT_StrrchrW(s
, (wchar_t)c
); }
576 inline const T
* wxStrchr(const wxCharTypeBuffer
<T
>& s
, T c
)
577 { return wxStrchr(s
.data(), c
); }
579 inline const T
* wxStrrchr(const wxCharTypeBuffer
<T
>& s
, T c
)
580 { return wxStrrchr(s
.data(), c
); }
582 inline const T
* wxStrchr(const wxCharTypeBuffer
<T
>& s
, const wxUniChar
& c
)
583 { return wxStrchr(s
.data(), (T
)c
); }
585 inline const T
* wxStrrchr(const wxCharTypeBuffer
<T
>& s
, const wxUniChar
& c
)
586 { return wxStrrchr(s
.data(), (T
)c
); }
588 inline const T
* wxStrchr(const wxCharTypeBuffer
<T
>& s
, const wxUniCharRef
& c
)
589 { return wxStrchr(s
.data(), (T
)c
); }
591 inline const T
* wxStrrchr(const wxCharTypeBuffer
<T
>& s
, const wxUniCharRef
& c
)
592 { return wxStrrchr(s
.data(), (T
)c
); }
593 // these functions return char* pointer into the non-temporary conversion buffer
594 // used by c_str()'s implicit conversion to char*, for ANSI build compatibility
595 inline const char* wxStrchr(const wxString
& s
, char c
)
596 { return wxCRT_StrchrA((const char*)s
.c_str(), c
); }
597 inline const char* wxStrrchr(const wxString
& s
, char c
)
598 { return wxCRT_StrrchrA((const char*)s
.c_str(), c
); }
599 inline const char* wxStrchr(const wxString
& s
, int c
)
600 { return wxCRT_StrchrA((const char*)s
.c_str(), c
); }
601 inline const char* wxStrrchr(const wxString
& s
, int c
)
602 { return wxCRT_StrrchrA((const char*)s
.c_str(), c
); }
603 inline const char* wxStrchr(const wxString
& s
, const wxUniChar
& c
)
604 { return wxCRT_StrchrA((const char*)s
.c_str(), (char)c
); }
605 inline const char* wxStrrchr(const wxString
& s
, const wxUniChar
& c
)
606 { return wxCRT_StrrchrA((const char*)s
.c_str(), (char)c
); }
607 inline const char* wxStrchr(const wxString
& s
, const wxUniCharRef
& c
)
608 { return wxCRT_StrchrA((const char*)s
.c_str(), (char)c
); }
609 inline const char* wxStrrchr(const wxString
& s
, const wxUniCharRef
& c
)
610 { return wxCRT_StrrchrA((const char*)s
.c_str(), (char)c
); }
611 inline const wchar_t* wxStrchr(const wxString
& s
, wchar_t c
)
612 { return wxCRT_StrchrW((const wchar_t*)s
.c_str(), c
); }
613 inline const wchar_t* wxStrrchr(const wxString
& s
, wchar_t c
)
614 { return wxCRT_StrrchrW((const wchar_t*)s
.c_str(), c
); }
615 inline const char* wxStrchr(const wxCStrData
& s
, char c
)
616 { return wxCRT_StrchrA(s
.AsChar(), c
); }
617 inline const char* wxStrrchr(const wxCStrData
& s
, char c
)
618 { return wxCRT_StrrchrA(s
.AsChar(), c
); }
619 inline const char* wxStrchr(const wxCStrData
& s
, int c
)
620 { return wxCRT_StrchrA(s
.AsChar(), c
); }
621 inline const char* wxStrrchr(const wxCStrData
& s
, int c
)
622 { return wxCRT_StrrchrA(s
.AsChar(), c
); }
623 inline const char* wxStrchr(const wxCStrData
& s
, const wxUniChar
& c
)
624 { return wxCRT_StrchrA(s
.AsChar(), (char)c
); }
625 inline const char* wxStrrchr(const wxCStrData
& s
, const wxUniChar
& c
)
626 { return wxCRT_StrrchrA(s
.AsChar(), (char)c
); }
627 inline const char* wxStrchr(const wxCStrData
& s
, const wxUniCharRef
& c
)
628 { return wxCRT_StrchrA(s
.AsChar(), (char)c
); }
629 inline const char* wxStrrchr(const wxCStrData
& s
, const wxUniCharRef
& c
)
630 { return wxCRT_StrrchrA(s
.AsChar(), (char)c
); }
631 inline const wchar_t* wxStrchr(const wxCStrData
& s
, wchar_t c
)
632 { return wxCRT_StrchrW(s
.AsWChar(), c
); }
633 inline const wchar_t* wxStrrchr(const wxCStrData
& s
, wchar_t c
)
634 { return wxCRT_StrrchrW(s
.AsWChar(), c
); }
636 inline const char *wxStrpbrk(const char *s
, const char *accept
)
637 { return wxCRT_StrpbrkA(s
, accept
); }
638 inline const wchar_t *wxStrpbrk(const wchar_t *s
, const wchar_t *accept
)
639 { return wxCRT_StrpbrkW(s
, accept
); }
640 inline const char *wxStrpbrk(const char *s
, const wxString
& accept
)
641 { return wxCRT_StrpbrkA(s
, accept
.mb_str()); }
642 inline const char *wxStrpbrk(const char *s
, const wxCStrData
& accept
)
643 { return wxCRT_StrpbrkA(s
, accept
.AsCharBuf()); }
644 inline const wchar_t *wxStrpbrk(const wchar_t *s
, const wxString
& accept
)
645 { return wxCRT_StrpbrkW(s
, accept
.wc_str()); }
646 inline const wchar_t *wxStrpbrk(const wchar_t *s
, const wxCStrData
& accept
)
647 { return wxCRT_StrpbrkW(s
, accept
.AsWCharBuf()); }
648 inline const char *wxStrpbrk(const wxString
& s
, const wxString
& accept
)
649 { return wxCRT_StrpbrkA(s
.c_str(), accept
.mb_str()); }
650 inline const char *wxStrpbrk(const wxString
& s
, const char *accept
)
651 { return wxCRT_StrpbrkA(s
.c_str(), accept
); }
652 inline const wchar_t *wxStrpbrk(const wxString
& s
, const wchar_t *accept
)
653 { return wxCRT_StrpbrkW(s
.wc_str(), accept
); }
654 inline const char *wxStrpbrk(const wxString
& s
, const wxCStrData
& accept
)
655 { return wxCRT_StrpbrkA(s
.c_str(), accept
.AsCharBuf()); }
656 inline const char *wxStrpbrk(const wxCStrData
& s
, const wxString
& accept
)
657 { return wxCRT_StrpbrkA(s
.AsChar(), accept
.mb_str()); }
658 inline const char *wxStrpbrk(const wxCStrData
& s
, const char *accept
)
659 { return wxCRT_StrpbrkA(s
.AsChar(), accept
); }
660 inline const wchar_t *wxStrpbrk(const wxCStrData
& s
, const wchar_t *accept
)
661 { return wxCRT_StrpbrkW(s
.AsWChar(), accept
); }
662 inline const char *wxStrpbrk(const wxCStrData
& s
, const wxCStrData
& accept
)
663 { return wxCRT_StrpbrkA(s
.AsChar(), accept
.AsCharBuf()); }
664 template <typename S
, typename T
>
665 inline const T
*wxStrpbrk(const S
& s
, const wxCharTypeBuffer
<T
>& accept
)
666 { return wxStrpbrk(s
, accept
.data()); }
669 /* inlined non-const versions */
670 inline char *wxStrstr(char *haystack
, const char *needle
)
671 { return (char *)wxStrstr((const char *)haystack
, needle
); }
672 inline wchar_t *wxStrstr(wchar_t *haystack
, const wchar_t *needle
)
673 { return (wchar_t *)wxStrstr((const wchar_t *)haystack
, needle
); }
674 inline char *wxStrstr(char *haystack
, const wxString
& needle
)
675 { return (char *)wxStrstr((const char *)haystack
, needle
); }
676 inline wchar_t *wxStrstr(wchar_t *haystack
, const wxString
& needle
)
677 { return (wchar_t *)wxStrstr((const wchar_t *)haystack
, needle
); }
679 inline char * wxStrchr(char *s
, char c
)
680 { return (char *)wxStrchr((const char *)s
, c
); }
681 inline char * wxStrrchr(char *s
, char c
)
682 { return (char *)wxStrrchr((const char *)s
, c
); }
683 inline wchar_t * wxStrchr(wchar_t *s
, wchar_t c
)
684 { return (wchar_t *)wxStrchr((const wchar_t *)s
, c
); }
685 inline wchar_t * wxStrrchr(wchar_t *s
, wchar_t c
)
686 { return (wchar_t *)wxStrrchr((const wchar_t *)s
, c
); }
688 inline char * wxStrpbrk(char *s
, const char *accept
)
689 { return (char *)wxStrpbrk((const char *)s
, accept
); }
690 inline wchar_t * wxStrpbrk(wchar_t *s
, const wchar_t *accept
)
691 { return (wchar_t *)wxStrpbrk((const wchar_t *)s
, accept
); }
692 inline char * wxStrpbrk(char *s
, const wxString
& accept
)
693 { return (char *)wxStrpbrk((const char *)s
, accept
); }
694 inline wchar_t * wxStrpbrk(wchar_t *s
, const wxString
& accept
)
695 { return (wchar_t *)wxStrpbrk((const wchar_t *)s
, accept
); }
698 // ----------------------------------------------------------------------------
700 // ----------------------------------------------------------------------------
702 // NB: using fn_str() for mode is a hack to get the same type (char*/wchar_t*)
703 // as needed, the conversion itself doesn't matter, it's ASCII
704 inline FILE *wxFopen(const wxString
& path
, const wxString
& mode
)
705 { return wxCRT_Fopen(path
.fn_str(), mode
.fn_str()); }
706 inline FILE *wxFreopen(const wxString
& path
, const wxString
& mode
, FILE *stream
)
707 { return wxCRT_Freopen(path
.fn_str(), mode
.fn_str(), stream
); }
708 inline int wxRemove(const wxString
& path
)
709 { return wxCRT_Remove(path
.fn_str()); }
710 inline int wxRename(const wxString
& oldpath
, const wxString
& newpath
)
711 { return wxCRT_Rename(oldpath
.fn_str(), newpath
.fn_str()); }
713 extern WXDLLIMPEXP_BASE
int wxPuts(const wxString
& s
);
714 extern WXDLLIMPEXP_BASE
int wxFputs(const wxString
& s
, FILE *stream
);
715 extern WXDLLIMPEXP_BASE
void wxPerror(const wxString
& s
);
717 extern WXDLLIMPEXP_BASE
int wxFputc(const wxUniChar
& c
, FILE *stream
);
719 #define wxPutc(c, stream) wxFputc(c, stream)
720 #define wxPutchar(c) wxFputc(c, stdout)
721 #define wxFputchar(c) wxPutchar(c)
723 // NB: We only provide ANSI version of fgets() because fgetws() interprets the
724 // stream according to current locale, which is rarely what is desired.
725 inline char *wxFgets(char *s
, int size
, FILE *stream
)
726 { return wxCRT_FgetsA(s
, size
, stream
); }
727 // This version calls ANSI version and converts the string using wxConvLibc
728 extern WXDLLIMPEXP_BASE
wchar_t *wxFgets(wchar_t *s
, int size
, FILE *stream
);
730 #define wxGets(s) wxGets_is_insecure_and_dangerous_use_wxFgets_instead
732 // NB: We only provide ANSI versions of this for the same reasons as in the
733 // case of wxFgets() above
734 inline int wxFgetc(FILE *stream
) { return wxCRT_FgetcA(stream
); }
735 inline int wxUngetc(int c
, FILE *stream
) { return wxCRT_UngetcA(c
, stream
); }
737 #define wxGetc(stream) wxFgetc(stream)
738 #define wxGetchar() wxFgetc(stdin)
739 #define wxFgetchar() wxGetchar()
741 // ----------------------------------------------------------------------------
742 // stdlib.h functions
743 // ----------------------------------------------------------------------------
746 inline int wxAtoi(const wxString
& str
) { return wxCRT_AtoiW(str
.wc_str()); }
748 inline int wxAtoi(const wxString
& str
) { return wxCRT_AtoiA(str
.mb_str()); }
752 inline long wxAtol(const wxString
& str
) { return wxCRT_AtolW(str
.wc_str()); }
754 inline long wxAtol(const wxString
& str
) { return wxCRT_AtolA(str
.mb_str()); }
758 inline double wxAtof(const wxString
& str
) { return wxCRT_AtofW(str
.wc_str()); }
760 inline double wxAtof(const wxString
& str
) { return wxCRT_AtofA(str
.mb_str()); }
763 inline double wxStrtod(const char *nptr
, char **endptr
)
764 { return wxCRT_StrtodA(nptr
, endptr
); }
765 inline double wxStrtod(const wchar_t *nptr
, wchar_t **endptr
)
766 { return wxCRT_StrtodW(nptr
, endptr
); }
768 inline double wxStrtod(const wxCharTypeBuffer
<T
>& nptr
, T
**endptr
)
769 { return wxStrtod(nptr
.data(), endptr
); }
771 // We implement wxStrto*() like this so that the code compiles when NULL is
772 // passed in - - if we had just char** and wchar_t** overloads for 'endptr', it
773 // would be ambiguous. The solution is to use a template so that endptr can be
774 // any type: when NULL constant is used, the type will be int and we can handle
775 // that case specially. Otherwise, we infer the type that 'nptr' should be
776 // converted to from the type of 'endptr'. We need wxStrtoxCharType<T> template
777 // to make the code compile even for T=int (that's the case when it's not going
778 // to be ever used, but it still has to compile).
779 template<typename T
> struct wxStrtoxCharType
{};
780 template<> struct wxStrtoxCharType
<char**>
782 typedef const char* Type
;
783 static char** AsPointer(char **p
) { return p
; }
785 template<> struct wxStrtoxCharType
<wchar_t**>
787 typedef const wchar_t* Type
;
788 static wchar_t** AsPointer(wchar_t **p
) { return p
; }
790 template<> struct wxStrtoxCharType
<int>
792 typedef const char* Type
; /* this one is never used */
793 static char** AsPointer(int WXUNUSED_UNLESS_DEBUG(p
))
795 wxASSERT_MSG( p
== 0, "passing non-NULL int is invalid" );
801 inline double wxStrtod(const wxString
& nptr
, T endptr
)
805 // when we don't care about endptr, use the string representation that
806 // doesn't require any conversion (it doesn't matter for this function
807 // even if its UTF-8):
808 return wxStrtod(nptr
.wx_str(), (wxStringCharType
**)NULL
);
812 // note that it is important to use c_str() here and not mb_str() or
813 // wc_str(), because we store the pointer into (possibly converted)
814 // buffer in endptr and so it must be valid even when wxStrtod() returns
815 typedef typename wxStrtoxCharType
<T
>::Type CharType
;
816 return wxStrtod((CharType
)nptr
.c_str(),
817 wxStrtoxCharType
<T
>::AsPointer(endptr
));
821 inline double wxStrtod(const wxCStrData
& nptr
, T endptr
)
822 { return wxStrtod(nptr
.AsString(), endptr
); }
825 #define WX_STRTOX_FUNC(rettype, name, implA, implW) \
826 /* see wxStrtod() above for explanation of this code: */ \
827 inline rettype name(const char *nptr, char **endptr, int base) \
828 { return implA(nptr, endptr, base); } \
829 inline rettype name(const wchar_t *nptr, wchar_t **endptr, int base) \
830 { return implW(nptr, endptr, base); } \
831 template<typename T> \
832 inline rettype name(const wxCharTypeBuffer<T>& nptr, T **endptr, int base)\
833 { return name(nptr.data(), endptr); } \
834 template<typename T> \
835 inline rettype name(const wxString& nptr, T endptr, int base) \
838 return name(nptr.wx_str(), (wxStringCharType**)NULL, base); \
841 typedef typename wxStrtoxCharType<T>::Type CharType; \
842 return name((CharType)nptr.c_str(), \
843 wxStrtoxCharType<T>::AsPointer(endptr), \
847 template<typename T> \
848 inline rettype name(const wxCStrData& nptr, T endptr, int base) \
849 { return name(nptr.AsString(), endptr, base); }
851 WX_STRTOX_FUNC(long, wxStrtol
, wxCRT_StrtolA
, wxCRT_StrtolW
)
852 WX_STRTOX_FUNC(unsigned long, wxStrtoul
, wxCRT_StrtoulA
, wxCRT_StrtoulW
)
854 WX_STRTOX_FUNC(wxLongLong_t
, wxStrtoll
, wxCRT_StrtollA
, wxCRT_StrtollW
)
855 WX_STRTOX_FUNC(wxULongLong_t
, wxStrtoull
, wxCRT_StrtoullA
, wxCRT_StrtoullW
)
856 #endif // wxLongLong_t
858 #undef WX_STRTOX_FUNC
861 // there is no command interpreter under CE, hence no system()
864 // mingw32 doesn't provide _tsystem() even though it provides other stdlib.h
865 // functions in their wide versions
867 inline int wxSystem(const wxString
& str
) { return wxCRT_SystemW(str
.wc_str()); }
869 inline int wxSystem(const wxString
& str
) { return wxCRT_SystemA(str
.mb_str()); }
872 #endif // !__WXWINCE__/__WXWINCE__
874 inline char* wxGetenv(const char *name
) { return wxCRT_GetenvA(name
); }
875 inline wchar_t* wxGetenv(const wchar_t *name
) { return wxCRT_GetenvW(name
); }
876 inline char* wxGetenv(const wxString
& name
) { return wxCRT_GetenvA(name
.mb_str()); }
877 inline char* wxGetenv(const wxCStrData
& name
) { return wxCRT_GetenvA(name
.AsCharBuf()); }
878 inline char* wxGetenv(const wxCharBuffer
& name
) { return wxCRT_GetenvA(name
.data()); }
879 inline wchar_t* wxGetenv(const wxWCharBuffer
& name
) { return wxCRT_GetenvW(name
.data()); }
881 // ----------------------------------------------------------------------------
883 // ----------------------------------------------------------------------------
885 inline size_t wxStrftime(char *s
, size_t max
,
886 const wxString
& format
, const struct tm
*tm
)
887 { return wxCRT_StrftimeA(s
, max
, format
.mb_str(), tm
); }
889 inline size_t wxStrftime(wchar_t *s
, size_t max
,
890 const wxString
& format
, const struct tm
*tm
)
891 { return wxCRT_StrftimeW(s
, max
, format
.wc_str(), tm
); }
893 // NB: we can't provide both char* and wchar_t* versions for obvious reasons
894 // and returning wxString wouldn't work either (it would be immediately
895 // destroyed and if assigned to char*/wchar_t*, the pointer would be
896 // invalid), so we only keep ASCII version, because the returned value
897 // is always ASCII anyway
898 #define wxAsctime asctime
899 #define wxCtime ctime
902 // ----------------------------------------------------------------------------
904 // ----------------------------------------------------------------------------
906 // FIXME-UTF8: we'd be better off implementing these ourselves, as the CRT
907 // version is locale-dependent
908 // FIXME-UTF8: these don't work when EOF is passed in because of wxUniChar,
909 // is this OK or not?
911 inline bool wxIsalnum(const wxUniChar
& c
) { return wxCRT_IsalnumW(c
) != 0; }
912 inline bool wxIsalpha(const wxUniChar
& c
) { return wxCRT_IsalphaW(c
) != 0; }
913 inline bool wxIscntrl(const wxUniChar
& c
) { return wxCRT_IscntrlW(c
) != 0; }
914 inline bool wxIsdigit(const wxUniChar
& c
) { return wxCRT_IsdigitW(c
) != 0; }
915 inline bool wxIsgraph(const wxUniChar
& c
) { return wxCRT_IsgraphW(c
) != 0; }
916 inline bool wxIslower(const wxUniChar
& c
) { return wxCRT_IslowerW(c
) != 0; }
917 inline bool wxIsprint(const wxUniChar
& c
) { return wxCRT_IsprintW(c
) != 0; }
918 inline bool wxIspunct(const wxUniChar
& c
) { return wxCRT_IspunctW(c
) != 0; }
919 inline bool wxIsspace(const wxUniChar
& c
) { return wxCRT_IsspaceW(c
) != 0; }
920 inline bool wxIsupper(const wxUniChar
& c
) { return wxCRT_IsupperW(c
) != 0; }
921 inline bool wxIsxdigit(const wxUniChar
& c
) { return wxCRT_IsxdigitW(c
) != 0; }
923 inline wxUniChar
wxTolower(const wxUniChar
& c
) { return wxCRT_TolowerW(c
); }
924 inline wxUniChar
wxToupper(const wxUniChar
& c
) { return wxCRT_ToupperW(c
); }
926 #if WXWIN_COMPATIBILITY_2_8
927 // we had goofed and defined wxIsctrl() instead of (correct) wxIscntrl() in the
928 // initial versions of this header -- now it is too late to remove it so
929 // although we fixed the function/macro name above, still provide the
930 // backwards-compatible synonym.
931 wxDEPRECATED( inline int wxIsctrl(const wxUniChar
& c
) );
932 inline int wxIsctrl(const wxUniChar
& c
) { return wxIscntrl(c
); }
933 #endif // WXWIN_COMPATIBILITY_2_8
935 #endif /* _WX_WXCRT_H_ */