]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wxchar.cpp
better attempts to try .utf-8 suffix
[wxWidgets.git] / src / common / wxchar.cpp
index 326c34dbe61aca75fb7d8d6046900bd0331623bf..8353277d164c2cdb136d1a9175302cf53de0448d 100644 (file)
@@ -1392,8 +1392,8 @@ WXDLLEXPORT wxChar * wxStrtok(wxChar *psz, const wxChar *delim, wxChar **save_pt
 // missing C RTL functions
 // ----------------------------------------------------------------------------
 
-#if defined( __MWERKS__ ) && !defined(__MACH__)
-#if __MSL__ < 0x00008000
+#if (defined(__MWERKS__) && !defined(__MACH__) && (__MSL__ < 0x00008000)) || \
+     defined(__WXWINCE__)
 char *strdup(const char *s)
 {
     char *dest = (char*) malloc( strlen( s ) + 1 ) ;
@@ -1402,21 +1402,16 @@ char *strdup(const char *s)
     return dest ;
 }
 #endif
+
+#if (defined(__MWERKS__) && !defined(__MACH__)) || (defined(__WXWINCE__) && _WIN32_WCE <= 211)
+
 int isascii( int c )
 {
-        return ( c >= 0 && c < 128 ) ;
-}
-#endif // __MWERKS__
-
-#ifdef __WXWINCE__
-char* strdup(const char* s)
-{
-    char *dest = (char*) malloc( strlen( s ) + 1 ) ;
-    if ( dest )
-        strcpy( dest , s ) ;
-    return dest ;
+    return ( c >= 0 && c < 128 );
 }
+#endif
 
+#if defined(__WXWINCE__)
 void *calloc( size_t num, size_t size )
 {
     void** ptr = (void **)malloc(num * size);
@@ -1424,15 +1419,11 @@ void *calloc( size_t num, size_t size )
     return ptr;
 }
 
+#if (_WIN32_WCE <= 211)
 int isspace(int c)
 {
     return (c == ' ');
 }
-
-int isascii( int c )
-{
-        return ( c >= 0 && c < 128 ) ;
-}
 #endif
 
-
+#endif