]> git.saurik.com Git - wxWidgets.git/blame - include/wx/wxchar.h
even more wxDateTime work (completely broken for now, but support for the
[wxWidgets.git] / include / wx / wxchar.h
CommitLineData
e35d0039
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: wxchar.h
3// Purpose: Declarations common to wx char/wchar_t usage (wide chars)
4// Author: Joel Farley
5// Modified by:
6// Created: 1998/06/12
7// RCS-ID: $Id$
8// Copyright: (c) wxWindows copyright
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_WXCHAR_H_
13#define _WX_WXCHAR_H_
14
88ac883a
VZ
15//#ifdef __GNUG__
16//#pragma interface "wxchar.h"
17//#endif
e35d0039
JS
18
19// only do SBCS or _UNICODE
20#if defined (_MBCS )
1777b9bb 21# error "MBCS is not supported by wxChar"
e35d0039
JS
22#endif
23
853d7d3d
OK
24// set wxUSE_UNICODE to 1 if UNICODE or _UNICODE is defined
25#if defined(_UNICODE) || defined(UNICODE)
1777b9bb
DW
26# undef wxUSE_UNICODE
27# define wxUSE_UNICODE 1
853d7d3d 28#else
1777b9bb
DW
29# ifndef wxUSE_UNICODE
30# define wxUSE_UNICODE 0
31# endif
853d7d3d
OK
32#endif
33
34// and vice versa: define UNICODE and _UNICODE if wxUSE_UNICODE is 1...
35#if wxUSE_UNICODE
1777b9bb
DW
36# ifndef _UNICODE
37# define _UNICODE
38# endif
39# ifndef UNICODE
40# define UNICODE
41# endif
853d7d3d
OK
42#endif
43
34f9227c 44// Windows (VC++) has broad TCHAR support
3f4a0c5b 45#if defined(__VISUALC__) && defined(__WIN32__)
e35d0039 46
1777b9bb 47# define HAVE_WCSLEN 1
a23fd0e1 48
1777b9bb 49# include <tchar.h>
73974df1 50
1777b9bb 51# if wxUSE_UNICODE // temporary - preserve binary compatibility
e35d0039 52typedef _TCHAR wxChar;
3f4a0c5b 53typedef _TSCHAR wxSChar;
e35d0039 54typedef _TUCHAR wxUChar;
1777b9bb
DW
55# else
56# define wxChar char
57# define wxSChar signed char
58# define wxUChar unsigned char
59# endif
81d425f6 60 // wchar_t is available
1777b9bb
DW
61# undef wxUSE_WCHAR_T
62# define wxUSE_WCHAR_T 1
e35d0039
JS
63
64 // ctype.h functions
1777b9bb
DW
65# define wxIsalnum _istalnum
66# define wxIsalpha _istalpha
67# define wxIsctrl _istctrl
68# define wxIsdigit _istdigit
69# define wxIsgraph _istgraph
70# define wxIslower _istlower
71# define wxIsprint _istprint
72# define wxIspunct _istpunct
73# define wxIsspace _istspace
74# define wxIsupper _istupper
75# define wxIsxdigit _istxdigit
76# define wxTolower _totlower
77# define wxToupper _totupper
e35d0039
JS
78
79 // locale.h functons
1777b9bb 80# define wxSetlocale _tsetlocale
e35d0039
JS
81
82 // string.h functions
1777b9bb
DW
83# define wxStrcat _tcscat
84# define wxStrchr _tcschr
85# define wxStrcmp _tcscmp
86# define wxStrcoll _tcscoll
87# define wxStrcpy _tcscpy
88# define wxStrcspn _tcscspn
89# define wxStrftime _tcsftime
90# define wxStricmp _tcsicmp
91# define wxStrlen_ _tcslen // used in wxStrlen inline function
92# define wxStrncat _tcsncat
93# define wxStrncmp _tcsncmp
94# define wxStrncpy _tcsncpy
95# define wxStrpbrk _tcspbrk
96# define wxStrrchr _tcsrchr
97# define wxStrspn _tcsspn
98# define wxStrstr _tcsstr
99# define wxStrtod _tcstod
e97a90f0 100// is there a _tcstok[_r] ?
1777b9bb
DW
101# define wxStrtol _tcstol
102# define wxStrtoul _tcstoul
103# define wxStrxfrm _tcsxfrm
e35d0039
JS
104
105 // stdio.h functions
1777b9bb
DW
106# define wxFgetc _fgettc
107# define wxFgetchar _fgettchar
108# define wxFgets _fgetts
109# define wxFopen _tfopen
110# define wxFputc _fputtc
111# define wxFputchar _fputtchar
112# define wxFprintf _ftprintf
113# define wxFreopen _tfreopen
114# define wxFscanf _ftscanf
115# define wxGetc _gettc
116# define wxGetchar _gettchar
117# define wxGets _getts
118# define wxPerror _tperror
119# define wxPrintf _tprintf
120# define wxPutc _puttc
121# define wxPutchar _puttchar
122# define wxPuts _putts
123# define wxRemove _tremove
124# define wxRename _trename
125# define wxScanf _tscanf
126# define wxSprintf _stprintf
127# define wxSscanf _stscanf
128# define wxTmpnam _ttmpnam
129# define wxUngetc _tungetc
130# define wxVfprint _vftprintf
131# define wxVprintf _vtprintf
132# define wxVsscanf _vstscanf
133# define wxVsprintf _vstprintf
e35d0039
JS
134
135 // stdlib.h functions
1777b9bb
DW
136# if !wxUSE_UNICODE
137# define wxAtof atof
138# endif
139# define wxAtoi _ttoi
140# define wxAtol _ttol
141# define wxGetenv _tgetenv
142# define wxSystem _tsystem
e35d0039
JS
143
144 // time.h functions
1777b9bb
DW
145# define wxAsctime _tasctime
146# define wxCtime _tctime
e35d0039
JS
147
148// #elif defined(XXX)
149 // #include XXX-specific files here
150 // typeddef YYY wxChar;
151
152 // translate wxZZZ names
153
853d7d3d
OK
154#elif defined(__BORLANDC__) && defined(__WIN32__)
155
156// Borland C++ 4.52 doesn't have much tchar support
157// maybe Borland C++ 5.02 has, can't check right now
158// but I'll use the Win32 API instead here
159
1777b9bb
DW
160# include <tchar.h>
161# if wxUSE_UNICODE // temporary - preserve binary compatibility
853d7d3d
OK
162typedef _TCHAR wxChar;
163typedef _TSCHAR wxSChar;
164typedef _TUCHAR wxUChar;
1777b9bb
DW
165# else
166# define wxChar char
167# define wxSChar signed char
168# define wxUChar unsigned char
169# endif
81d425f6 170 // wchar_t is available
1777b9bb 171# undef wxUSE_WCHAR_T
cf1d22d6 172// This test is for C++Builder
c09f2879 173#if __BORLANDC__ >= 0x530
cf1d22d6 174# define wxUSE_WCHAR_T 0
c09f2879 175#else
1777b9bb 176# define wxUSE_WCHAR_T 1
cf1d22d6
JS
177# define wxNEED_WCSLEN
178#endif
1777b9bb 179# define wxNEED_WX_CTYPE_H
853d7d3d 180// #define wxStrtok strtok_r // Borland C++ 4.52 doesn't have strtok_r
1777b9bb
DW
181# define wxNEED_WX_STRING_H
182# define wxNEED_WX_STDIO_H
183# define wxNEED_WX_STDLIB_H
184# define wxNEED_WX_TIME_H
853d7d3d 185
ec6f6982 186// VisualAge C++ V4.0 has broad tchar support
d5c22d10 187#elif defined(__VISAGECPP__) && __IBMCPP__ >= 400
ec6f6982
DW
188
189# define HAVE_WCSLEN 1
d5c22d10 190# include <wchar.h>
ec6f6982
DW
191# include <tchar.h>
192
193# if wxUSE_UNICODE // temporary - preserve binary compatibility
194typedef _TCHAR wxChar;
195typedef _TSCHAR wxSChar;
196typedef _TUCHAR wxUChar;
197# else
198# define wxChar char
199# define wxSChar signed char
200# define wxUChar unsigned char
201# endif
202 // wchar_t is available
203# undef wxUSE_WCHAR_T
204# define wxUSE_WCHAR_T 1
205
206 // ctype.h functions
207# define wxIsalnum _istalnum
208# define wxIsalpha _istalpha
d5c22d10 209# define wxIsctrl _istcntrl
ec6f6982
DW
210# define wxIsdigit _istdigit
211# define wxIsgraph _istgraph
212# define wxIslower _istlower
213# define wxIsprint _istprint
214# define wxIspunct _istpunct
215# define wxIsspace _istspace
216# define wxIsupper _istupper
217# define wxIsxdigit _istxdigit
218# define wxTolower _totlower
219# define wxToupper _totupper
220
d5c22d10
DW
221 // locale.h functons -- not defined in tchar.h
222# define wxSetlocale setlocale
ec6f6982
DW
223
224 // string.h functions
225# define wxStrcat _tcscat
226# define wxStrchr _tcschr
227# define wxStrcmp _tcscmp
228# define wxStrcoll _tcscoll
229# define wxStrcpy _tcscpy
230# define wxStrcspn _tcscspn
231# define wxStrftime _tcsftime
232# define wxStricmp _tcsicmp
233# define wxStrlen_ _tcslen // used in wxStrlen inline function
234# define wxStrncat _tcsncat
235# define wxStrncmp _tcsncmp
236# define wxStrncpy _tcsncpy
237# define wxStrpbrk _tcspbrk
238# define wxStrrchr _tcsrchr
239# define wxStrspn _tcsspn
240# define wxStrstr _tcsstr
241# define wxStrtod _tcstod
242// is there a _tcstok[_r] ?
243# define wxStrtol _tcstol
244# define wxStrtoul _tcstoul
245# define wxStrxfrm _tcsxfrm
246
247 // stdio.h functions
248# define wxFgetc _fgettc
ec6f6982 249# define wxFgets _fgetts
ec6f6982 250# define wxFputc _fputtc
ec6f6982 251# define wxFprintf _ftprintf
ec6f6982
DW
252# define wxFscanf _ftscanf
253# define wxGetc _gettc
254# define wxGetchar _gettchar
ec6f6982
DW
255# define wxPrintf _tprintf
256# define wxPutc _puttc
257# define wxPutchar _puttchar
ec6f6982
DW
258# define wxScanf _tscanf
259# define wxSprintf _stprintf
260# define wxSscanf _stscanf
ec6f6982
DW
261# define wxVfprint _vftprintf
262# define wxVprintf _vtprintf
ec6f6982 263# define wxVsprintf _vstprintf
d5c22d10
DW
264// not defined in tchar.h
265# define wxFgetchar fgetchar
266# define wxFopen fopen
267# define wxFputchar fputchar
268# define wxFreopen freopen
269# define wxGets gets
270# define wxPerror perror
271# define wxPuts puts
272# define wxRemove remove
273# define wxRename rename
274# define wxTmpnam tmpnam
275# define wxUngetc ungetc
276# define wxVsscanf vsscanf
ec6f6982 277
d5c22d10 278 // stdlib.h functions -- none defined in tchar.h
ec6f6982
DW
279# if !wxUSE_UNICODE
280# define wxAtof atof
281# endif
d5c22d10
DW
282# define wxAtoi atoi
283# define wxAtol atol
284# define wxGetenv getenv
285# define wxSystem system
ec6f6982 286
d5c22d10
DW
287 // time.h functions -- none defined in tchar.h
288# define wxAsctime asctime
289# define wxCtime ctime
ec6f6982
DW
290
291// #elif defined(XXX)
292 // #include XXX-specific files here
293 // typeddef YYY wxChar;
294
295 // translate wxZZZ names
296
81d425f6 297#else//!TCHAR-aware compilers
34f9227c 298
81d425f6 299// check whether we should include wchar.h or equivalent
1777b9bb
DW
300# if wxUSE_UNICODE
301# undef wxUSE_WCHAR_T
302# define wxUSE_WCHAR_T 1 // wchar_t *must* be available in Unicode mode
303# elif !defined(wxUSE_WCHAR_T)
304# if defined(__VISUALC__) && (__VISUALC__ < 900)
305# define wxUSE_WCHAR_T 0 // wchar_t is not available for MSVC++ 1.5
306# elif defined(__UNIX__)
307# if defined(HAVE_WCSTR_H) || defined(HAVE_WCHAR_H) || defined(__FreeBSD__)
308# define wxUSE_WCHAR_T 1
309# else
310# define wxUSE_WCHAR_T 0
311# endif
312# elif defined(__GNUWIN32__) && !defined(__MINGW32__) // Cygwin (not Mingw32) doesn't have wcslen.h, needed in buffer.h
313# define wxUSE_WCHAR_T 0
314# elif defined(__BORLANDC__) // WIN16 BC++
315# define wxUSE_WCHAR_T 0
316# elif defined(__WATCOMC__)
317# define wxUSE_WCHAR_T 0
318# else
a89ae1e4 319 // add additional compiler checks if this fails
1777b9bb
DW
320# define wxUSE_WCHAR_T 1
321# endif
322# endif//wxUSE_UNICODE
323
324# if wxUSE_WCHAR_T
325# ifdef HAVE_WCSTR_H
326# include <wcstr.h>
327# else
328# ifndef __FreeBSD__
329# include <wchar.h>
330# else
331# include <stdlib.h>
332# define wxNEED_WCSLEN
333# endif
334# endif
335# endif
65d77246 336
34f9227c 337// check whether we are doing Unicode
1777b9bb 338# if wxUSE_UNICODE
34f9227c 339
1777b9bb 340# include <wctype.h>
34f9227c
OK
341
342// this is probably glibc-specific
1777b9bb 343# if defined(__WCHAR_TYPE__)
34f9227c
OK
344
345typedef __WCHAR_TYPE__ wxChar;
346typedef signed __WCHAR_TYPE__ wxSChar;
347typedef unsigned __WCHAR_TYPE__ wxUChar;
348
cdb51680 349# define _T(x) L##x
1777b9bb
DW
350
351 // ctype.h functions (wctype.h)
352# define wxIsalnum iswalnum
353# define wxIsalpha iswalpha
354# define wxIsctrl iswcntrl
355# define wxIsdigit iswdigit
356# define wxIsgraph iswgraph
357# define wxIslower iswlower
358# define wxIsprint iswprint
359# define wxIspunct iswpunct
360# define wxIsspace iswspace
361# define wxIsupper iswupper
362# define wxIsxdigit iswxdigit
363
364# if defined(__GLIBC__) && (__GLIBC__ == 2) && (__GLIBC_MINOR__ == 0)
365 // /usr/include/wctype.h incorrectly declares translations tables which
366 // provokes tons of compile-time warnings - try to correct this
367# define wxTolower(wc) towctrans((wc), (wctrans_t)__ctype_tolower)
368# define wxToupper(wc) towctrans((wc), (wctrans_t)__ctype_toupper)
369# else
370# define wxTolower towlower
371# define wxToupper towupper
372# endif // gcc/!gcc
373
374 // string.h functions (wchar.h)
375# define wxStrcat wcscat
376# define wxStrchr wcschr
377# define wxStrcmp wcscmp
378# define wxStrcoll wcscoll
379# define wxStrcpy wcscpy
380# define wxStrcspn wcscspn
381# define wxStrlen_ wcslen // used in wxStrlen inline function
382# define wxStrncat wcsncat
383# define wxStrncmp wcsncmp
384# define wxStrncpy wcsncpy
385# define wxStrpbrk wcspbrk
386# define wxStrrchr wcsrchr
387# define wxStrspn wcsspn
388# define wxStrstr wcsstr
389# define wxStrtod wcstod
390# define wxStrtok wcstok
391# define wxStrtol wcstol
392# define wxStrtoul wcstoul
393# define wxStrxfrm wcsxfrm
e35d0039 394
34f9227c 395// glibc doesn't have wc equivalents of the other stuff
1777b9bb
DW
396# define wxNEED_WX_STDIO_H
397# define wxNEED_WX_STDLIB_H
398# define wxNEED_WX_TIME_H
34f9227c 399
1777b9bb
DW
400# else//!glibc
401# error "Please define your compiler's Unicode conventions in wxChar.h"
402# endif
403# else//!Unicode
e35d0039 404
1777b9bb
DW
405# include <ctype.h>
406# include <string.h>
e97a90f0 407
e90c1d2a
VZ
408# if 0 // temporary - preserve binary compatibilty
409 typedef char wxChar;
410 typedef signed char wxSChar;
411 typedef unsigned char wxUChar;
412# else
413# define wxChar char
414# define wxSChar signed char
415# define wxUChar unsigned char
416# endif
417
418# ifdef __FreeBSD__
cdb51680 419# undef _T
e90c1d2a 420# endif
b4fe5125
JS
421
422# if !defined(__MINGW32__) || !defined(_T)
423# define _T(x) x
424# endif
1777b9bb
DW
425
426 // ctype.h functions
e90c1d2a
VZ
427# define wxIsalnum isalnum
428# define wxIsalpha isalpha
429# define wxIsctrl isctrl
430# define wxIsdigit isdigit
431# define wxIsgraph isgraph
432# define wxIslower islower
433# define wxIsprint isprint
434# define wxIspunct ispunct
435# define wxIsspace isspace
436# define wxIsupper isupper
437# define wxIsxdigit isxdigit
438# define wxTolower tolower
439# define wxToupper toupper
440
441 // locale.h functons
442# define wxSetlocale setlocale
443
444 // string.h functions
445 // #define wxStricmp strcasecmp
446 // wxStricmp is defined below!!
447
448 #ifdef HAVE_STRTOK_R
449 #define wxStrtok(str, sep, last) strtok_r(str, sep, last)
450 #else
451 #define wxStrtok(str, sep, last) strtok(str, sep)
452 #endif
1777b9bb
DW
453
454 // leave the rest to defaults below
e90c1d2a
VZ
455# define wxNEED_WX_STRING_H
456# define wxNEED_WX_STDIO_H
457# define wxNEED_WX_STDLIB_H
458# define wxNEED_WX_TIME_H
1777b9bb
DW
459
460# endif//Unicode
853d7d3d
OK
461#endif//TCHAR-aware compilers
462
463// define wxStricmp for various compilers without Unicode possibilities
464#if !defined(wxStricmp) && !wxUSE_UNICODE
fd9811b1 465# if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__SALFORDC__) || defined(__VISAGECPP__) || defined(__EMX__)
1777b9bb 466# define wxStricmp stricmp
9199e66f 467# define wxStrnicmp strnicmp
585ae8cb 468# elif defined(__SC__) || defined(__VISUALC__) || (defined(__MWERKS__) && defined(__INTEL__))
1777b9bb 469# define wxStricmp _stricmp
9199e66f 470# define wxStrnicmp _strnicmp
1777b9bb
DW
471# elif defined(__UNIX__) || defined(__GNUWIN32__)
472# define wxStricmp strcasecmp
9199e66f 473# define wxStrnicmp strncasecmp
1777b9bb
DW
474# elif defined(__MWERKS__) && !defined(__INTEL__)
475 // use wxWindows' implementation
476# else
477 // if you leave wxStricmp undefined, wxWindows' implementation will be used
478# error "Please define string case-insensitive compare for your OS/compiler"
479# endif
853d7d3d
OK
480#endif
481
482// if we need to define for standard headers, and we're not using Unicode,
483// just define to standard C library routines
484#if !wxUSE_UNICODE
1777b9bb
DW
485# ifdef wxNEED_WX_STRING_H
486# define wxStrcat strcat
487# define wxStrchr strchr
488# define wxStrcmp strcmp
489# define wxStrcoll strcoll
490# define wxStrcpy strcpy
491# define wxStrcspn strcspn
492# define wxStrdup strdup
493# define wxStrlen_ strlen // used in wxStrlen inline function
494# define wxStrncat strncat
495# define wxStrncmp strncmp
496# define wxStrncpy strncpy
497# define wxStrpbrk strpbrk
498# define wxStrrchr strrchr
499# define wxStrspn strspn
500# define wxStrstr strstr
501# define wxStrtod strtod
502# define wxStrtol strtol
503# define wxStrtoul strtoul
504# define wxStrxfrm strxfrm
505# undef wxNEED_WX_STRING_H
506# endif
507
508# ifdef wxNEED_WX_STDIO_H
509# define wxFgetc fgetc
510# define wxFgetchar fgetchar
511# define wxFgets fgets
512# define wxFopen fopen
513# define wxFputc fputc
514# define wxFputchar fputchar
515# define wxFprintf fprintf
516# define wxFreopen freopen
517# define wxFscanf fscanf
518# define wxGetc getc
519# define wxGetchar getchar
520# define wxGets gets
521# define wxPerror perror
522# define wxPrintf printf
523# define wxPutc putc
524# define wxPutchar putchar
525# define wxPuts puts
526# define wxRemove remove
527# define wxRename rename
528# define wxScanf scanf
529# define wxSprintf sprintf
530# define wxSscanf sscanf
531# define wxTmpnam tmpnam
532# define wxUngetc ungetc
533# define wxVfprint vfprintf
534# define wxVprintf vprintf
535# define wxVsscanf vsscanf
536# define wxVsprintf vsprintf
537# undef wxNEED_WX_STDIO_H
538# endif
539
540# ifdef wxNEED_WX_STDLIB_H
541# define wxAtof atof
542# define wxAtoi atoi
543# define wxAtol atol
544# define wxGetenv getenv
545# define wxSystem system
546# undef wxNEED_WX_STDLIB_H
547# endif
548
549# ifdef wxNEED_WX_TIME_H
550# define wxAsctime asctime
551# define wxCtime ctime
552# define wxStrftime strftime
553# undef wxNEED_WX_TIME_H
554# endif
853d7d3d 555#endif //!Unicode
e35d0039 556
853d7d3d 557#if defined(wxNEED_WCSLEN) && wxUSE_UNICODE
1777b9bb
DW
558# define wcslen wxStrlen
559# undef wxNEED_WCSLEN
853d7d3d 560#endif
e35d0039
JS
561
562/// checks whether the passed in pointer is NULL and if the string is empty
49828363 563WXDLLEXPORT inline bool wxIsEmpty(const wxChar *p) { return !p || !*p; }
e35d0039 564
853d7d3d 565#ifndef wxNEED_WX_STRING_H
e35d0039 566/// safe version of strlen() (returns 0 if passed NULL pointer)
49828363 567WXDLLEXPORT inline size_t wxStrlen(const wxChar *psz)
853d7d3d 568 { return psz ? wxStrlen_(psz) : 0; }
34f9227c 569#endif
e35d0039 570
81d425f6 571#if wxUSE_WCHAR_T
e97a90f0 572// multibyte<->widechar conversion
49828363
RD
573WXDLLEXPORT size_t wxMB2WC(wchar_t *buf, const char *psz, size_t n);
574WXDLLEXPORT size_t wxWC2MB(char *buf, const wchar_t *psz, size_t n);
1777b9bb
DW
575# if wxUSE_UNICODE
576# define wxMB2WX wxMB2WC
577# define wxWX2MB wxWC2MB
578# define wxWC2WX wxStrncpy
579# define wxWX2WC wxStrncpy
580# else
581# define wxMB2WX wxStrncpy
582# define wxWX2MB wxStrncpy
583# define wxWC2WX wxWC2MB
584# define wxWX2WC wxMB2WC
585# endif
0f3e3e0c
JS
586#else
587// No wxUSE_WCHAR_T: we have to do something (JACS)
1777b9bb
DW
588# define wxMB2WC wxStrncpy
589# define wxWC2MB wxStrncpy
590# define wxMB2WX wxStrncpy
591# define wxWX2MB wxStrncpy
592# define wxWC2WX wxWC2MB
593# define wxWX2WC wxMB2WC
81d425f6 594#endif
0f3e3e0c 595
49828363 596WXDLLEXPORT bool wxOKlibc(); // for internal use
e97a90f0
OK
597
598// if libc versions are not available, use replacements defined in wxchar.cpp
599#ifndef wxStrdup
49828363 600WXDLLEXPORT wxChar * wxStrdup(const wxChar *psz);
e97a90f0
OK
601#endif
602
0841bffa 603#ifndef wxStricmp
49828363 604WXDLLEXPORT int wxStricmp(const wxChar *psz1, const wxChar *psz2);
0841bffa
OK
605#endif
606
e97a90f0 607#ifndef wxStrtok
49828363 608WXDLLEXPORT wxChar * wxStrtok(wxChar *psz, const wxChar *delim, wxChar **save_ptr);
e97a90f0
OK
609#endif
610
611#ifndef wxSetlocale
49828363 612WXDLLEXPORT wxChar * wxSetlocale(int category, const wxChar *locale);
e97a90f0
OK
613#endif
614
853d7d3d 615#ifdef wxNEED_WCSLEN // for use in buffer.h
49828363 616WXDLLEXPORT size_t wcslen(const wchar_t *s);
853d7d3d
OK
617#endif
618
57f6da0d 619#ifdef wxNEED_WX_CTYPE_H
49828363
RD
620WXDLLEXPORT int wxIsalnum(wxChar ch);
621WXDLLEXPORT int wxIsalpha(wxChar ch);
622WXDLLEXPORT int wxIsctrl(wxChar ch);
623WXDLLEXPORT int wxIsdigit(wxChar ch);
624WXDLLEXPORT int wxIsgraph(wxChar ch);
625WXDLLEXPORT int wxIslower(wxChar ch);
626WXDLLEXPORT int wxIsprint(wxChar ch);
627WXDLLEXPORT int wxIspunct(wxChar ch);
628WXDLLEXPORT int wxIsspace(wxChar ch);
629WXDLLEXPORT int wxIsupper(wxChar ch);
630WXDLLEXPORT int wxIsxdigit(wxChar ch);
631WXDLLEXPORT int wxTolower(wxChar ch);
632WXDLLEXPORT int wxToupper(wxChar ch);
57f6da0d
OK
633#endif
634
853d7d3d 635#ifdef wxNEED_WX_STRING_H
49828363
RD
636WXDLLEXPORT wxChar * wxStrcat(wxChar *dest, const wxChar *src);
637WXDLLEXPORT wxChar * wxStrchr(const wxChar *s, wxChar c);
638WXDLLEXPORT int wxStrcmp(const wxChar *s1, const wxChar *s2);
639WXDLLEXPORT int wxStrcoll(const wxChar *s1, const wxChar *s2);
640WXDLLEXPORT wxChar * wxStrcpy(wxChar *dest, const wxChar *src);
641WXDLLEXPORT size_t wxStrcspn(const wxChar *s, const wxChar *reject);
642WXDLLEXPORT size_t wxStrlen(const wxChar *s);
643WXDLLEXPORT wxChar * wxStrncat(wxChar *dest, const wxChar *src, size_t n);
644WXDLLEXPORT int wxStrncmp(const wxChar *s1, const wxChar *s2, size_t n);
645WXDLLEXPORT wxChar * wxStrncpy(wxChar *dest, const wxChar *src, size_t n);
646WXDLLEXPORT wxChar * wxStrpbrk(const wxChar *s, const wxChar *accept);
647WXDLLEXPORT wxChar * wxStrrchr(const wxChar *s, wxChar c);
648WXDLLEXPORT size_t wxStrspn(const wxChar *s, const wxChar *accept);
649WXDLLEXPORT wxChar * wxStrstr(const wxChar *haystack, const wxChar *needle);
650WXDLLEXPORT double wxStrtod(const wxChar *nptr, wxChar **endptr);
651WXDLLEXPORT long int wxStrtol(const wxChar *nptr, wxChar **endptr, int base);
652WXDLLEXPORT unsigned long int wxStrtoul(const wxChar *nptr, wxChar **endptr, int base);
653WXDLLEXPORT size_t wxStrxfrm(wxChar *dest, const wxChar *src, size_t n);
853d7d3d
OK
654#endif
655
e97a90f0 656#ifdef wxNEED_WX_STDIO_H
1777b9bb
DW
657# include <stdio.h>
658# include <stdarg.h>
e385b3ff
OK
659WXDLLEXPORT FILE * wxFopen(const wxChar *path, const wxChar *mode);
660WXDLLEXPORT FILE * wxFreopen(const wxChar *path, const wxChar *mode, FILE *stream);
49828363
RD
661WXDLLEXPORT int wxPrintf(const wxChar *fmt, ...);
662WXDLLEXPORT int wxVprintf(const wxChar *fmt, va_list argptr);
663WXDLLEXPORT int wxFprintf(FILE *stream, const wxChar *fmt, ...);
664WXDLLEXPORT int wxVfprintf(FILE *stream, const wxChar *fmt, va_list argptr);
665WXDLLEXPORT int wxSprintf(wxChar *buf, const wxChar *fmt, ...);
666WXDLLEXPORT int wxVsprintf(wxChar *buf, const wxChar *fmt, va_list argptr);
667WXDLLEXPORT int wxSscanf(const wxChar *buf, const wxChar *fmt, ...);
668WXDLLEXPORT int wxVsscanf(const wxChar *buf, const wxChar *fmt, va_list argptr);
e97a90f0
OK
669#endif
670
a982ddd2 671#ifndef wxAtof
49828363 672WXDLLEXPORT double wxAtof(const wxChar *psz);
a982ddd2
OK
673#endif
674
675#ifdef wxNEED_WX_STDLIB_H
49828363
RD
676WXDLLEXPORT int wxAtoi(const wxChar *psz);
677WXDLLEXPORT long wxAtol(const wxChar *psz);
678WXDLLEXPORT wxChar * wxGetenv(const wxChar *name);
679WXDLLEXPORT int wxSystem(const wxChar *psz);
639a9fb5
OK
680#endif
681
e385b3ff
OK
682#ifdef wxNEED_WX_TIME_H
683WXDLLEXPORT size_t wxStrftime(wxChar *s, size_t max, const wxChar *fmt, const struct tm *tm);
684#endif
685
cdb51680
VZ
686// although global macros with such names are really bad, we want to have
687// another name for _T() which should be used to avoid confusion between _T()
688// and _() in wxWindows sources
223d09f6 689#define wxT(x) _T(x)
cdb51680 690
e90c1d2a
VZ
691// a Unicode-friendly __FILE__ analog
692#ifndef __TFILE__
223d09f6 693 #define __XFILE__(x) wxT(x)
e90c1d2a
VZ
694 #define __TFILE__ __XFILE__(__FILE__)
695#endif
696
e35d0039
JS
697#endif
698 //_WX_WXCHAR_H_
1777b9bb 699