}
#endif
-#if (defined(__MWERKS__) && !defined(__MACH__)) || defined(__WXWINCE__)
+#if (defined(__MWERKS__) && !defined(__MACH__)) || (defined(__WXWINCE__) && _WIN32_WCE <= 211)
+
int isascii( int c )
{
return ( c >= 0 && c < 128 );
return ptr;
}
+#if (_WIN32_WCE <= 211)
int isspace(int c)
{
return (c == ' ');
}
#endif
+
+#endif