#include "wx/hash.h"
#endif
+#include "wx/msgdlg.h"
+
#if defined(__WIN32__) && defined(wxNEED_WX_CTYPE_H)
#include <windef.h>
#include <winbase.h>
return ret;
}
-WXDLLEXPORT wxChar * wxStrchr(const wxChar *s, wxChar c)
+WXDLLEXPORT const wxChar * wxStrchr(const wxChar *s, wxChar c)
{
- while (*s && *s != c) s++;
- return (*s) ? (wxChar *)s : (wxChar *)NULL;
+ // be careful here as the terminating NUL makes part of the string
+ while ( *s != c )
+ {
+ if ( !*s++ )
+ return NULL;
+ }
+
+ return s;
}
WXDLLEXPORT int wxStrcmp(const wxChar *s1, const wxChar *s2)
return ret;
}
-WXDLLEXPORT wxChar * wxStrpbrk(const wxChar *s, const wxChar *accept)
+WXDLLEXPORT const wxChar * wxStrpbrk(const wxChar *s, const wxChar *accept)
{
- while (*s && !wxStrchr(accept, *s)) s++;
- return (*s) ? (wxChar *)s : (wxChar *)NULL;
+ while (*s && !wxStrchr(accept, *s))
+ s++;
+
+ return *s ? s : NULL;
}
-WXDLLEXPORT wxChar * wxStrrchr(const wxChar *s, wxChar c)
+WXDLLEXPORT const wxChar * wxStrrchr(const wxChar *s, wxChar c)
{
- wxChar *ret = (wxChar *)NULL;
- while (*s) {
- if (*s == c) ret = (wxChar *)s;
- s++;
- }
- return ret;
+ const wxChar *ret = NULL;
+ do
+ {
+ if ( *s == c )
+ ret = s;
+ s++;
+ }
+ while ( *s );
+
+ return ret;
}
WXDLLEXPORT size_t wxStrspn(const wxChar *s, const wxChar *accept)
return len;
}
-WXDLLEXPORT wxChar * wxStrstr(const wxChar *haystack, const wxChar *needle)
+WXDLLEXPORT const wxChar *wxStrstr(const wxChar *haystack, const wxChar *needle)
{
wxCHECK_RET( needle, NULL, _T("NULL argument in wxStrstr") );
+ // VZ: this is not exactly the most efficient string search algorithm...
+
const size_t len = wxStrlen(needle);
- wxChar *fnd;
- while ( (fnd = wxStrchr(haystack, *needle)) )
+ while ( const wxChar *fnd = wxStrchr(haystack, *needle) )
{
if ( !wxStrncmp(fnd, needle, len) )
return fnd;
haystack = fnd + 1;
}
- return (wxChar *)NULL;
+ return NULL;
}
WXDLLEXPORT double wxStrtod(const wxChar *nptr, wxChar **endptr)
#ifdef wxNEED_WX_STDIO_H
WXDLLEXPORT FILE * wxFopen(const wxChar *path, const wxChar *mode)
{
- return fopen(wxConvFile.cWX2MB(path), wxConvLibc.cWX2MB(mode));
+ return fopen( wxConvFile.cWX2MB(path), wxConvLibc.cWX2MB(mode) );
}
WXDLLEXPORT FILE * wxFreopen(const wxChar *path, const wxChar *mode, FILE *stream)
{
- return freopen(wxConvFile.cWX2MB(path), wxConvLibc.cWX2MB(mode), stream);
+ return freopen( wxConvFile.cWX2MB(path), wxConvLibc.cWX2MB(mode), stream );
}
WXDLLEXPORT int wxRemove(const wxChar *path)
{
- return remove(wxConvFile.cWX2MB(path));
+ return remove( wxConvFile.cWX2MB(path) );
}
WXDLLEXPORT int wxRename(const wxChar *oldpath, const wxChar *newpath)
{
- return rename(wxConvFile.cWX2MB(oldpath), wxConvFile.cWX2MB(newpath));
+ return rename( wxConvFile.cWX2MB(oldpath), wxConvFile.cWX2MB(newpath) );
}
int WXDLLEXPORT wxPrintf(const wxChar *fmt, ...)
wxChar * WXDLLEXPORT wxGetenv(const wxChar *name)
{
static wxHashTable env;
+
// check if we already have stored the converted env var
wxObject *data = env.Get(name);
- if (!data) {
+ if (!data)
+ {
// nope, retrieve it,
- const char *val = getenv(wxConvLibc.cWX2MB(name));
+#if wxUSE_UNICODE
+ wxCharBuffer buffer = wxConvLibc.cWX2MB(name);
+ // printf( "buffer %s\n", (const char*) buffer );
+ const char *val = getenv( (const char *)buffer );
+#else
+ const char *val = getenv( name );
+#endif
+
if (!val) return (wxChar *)NULL;
+ // printf( "home %s\n", val );
+
// convert it,
+#ifdef wxUSE_UNICODE
+ data = (wxObject *)new wxString(val, wxConvLibc);
+#else
data = (wxObject *)new wxString(val);
+#endif
+
// and store it
env.Put(name, data);
}