aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/missing
diff options
context:
space:
mode:
Diffstat (limited to 'backends/wince/missing')
-rw-r--r--backends/wince/missing/missing.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/backends/wince/missing/missing.cpp b/backends/wince/missing/missing.cpp
index 0b3218d3cf..de4fc8a07b 100644
--- a/backends/wince/missing/missing.cpp
+++ b/backends/wince/missing/missing.cpp
@@ -245,6 +245,13 @@ void rewind(FILE *stream)
#if _WIN32_WCE < 300
+
+int isalnum(int c) {
+ return ((c >= 'A' && c <= 'Z') ||
+ (c >= 'a' && c <= 'z') ||
+ (c >= '0' && c <= '9'));
+}
+
char *_strdup(const char *strSource)
#else
char *strdup(const char *strSource)