summaryrefslogtreecommitdiff
path: root/wince
diff options
context:
space:
mode:
Diffstat (limited to 'wince')
-rw-r--r--wince/stdlib.c22
-rw-r--r--wince/string.c71
2 files changed, 22 insertions, 71 deletions
diff --git a/wince/stdlib.c b/wince/stdlib.c
new file mode 100644
index 0000000000..b3d5f3bb6e
--- /dev/null
+++ b/wince/stdlib.c
@@ -0,0 +1,22 @@
+/***************************************************************
+ stdlib.c
+***************************************************************/
+
+#include <windows.h>
+
+char **environ;
+extern char * rb_w32_getenv(const char *);
+
+/* getenv should replace with rb_w32_getenv. */
+char *getenv(const char *env)
+{
+ return rb_w32_getenv(env);
+}
+
+char *_fullpath(char *absPath, const char *relPath,
+ size_t maxLength)
+{
+ strcpy( absPath, relPath );
+ return absPath;
+}
+
diff --git a/wince/string.c b/wince/string.c
deleted file mode 100644
index 74a4afe909..0000000000
--- a/wince/string.c
+++ /dev/null
@@ -1,71 +0,0 @@
-/***************************************************************
- string.c
-***************************************************************/
-
-#include <windows.h>
-#include "wince.h" /* for wce_mbtowc */
-
-extern char* rb_w32_strerror(int errno);
-
-/* _strdup already exists in stdlib.h? */
-char *strdup(const char * str)
-{
- char *p;
-
- p = malloc( strlen(str)+1 );
- strcpy( p, str );
- return p;
-}
-
-/* strerror shoud replace with rb_w32_strerror. */
-char* strerror(int errno)
-{
- return rb_w32_strerror(errno);
-}
-
-/* strnicmp already exists in stdlib.h? */
-int strnicmp( const char *s1, const char *s2, size_t count )
-{
- wchar_t *w1, *w2;
- int n;
-
- w1 = wce_mbtowc(s1);
- w2 = wce_mbtowc(s2);
-
- n = wcsnicmp(w1, w2, count);
-
- free(w1);
- free(w2);
-
- return n;
-}
-
-#if _WIN32_WCE < 300
-#include "..\missing\strtoul.c"
-
-char *strrchr( const char *p, int c )
-{
- char *pp;
- for( pp=(char*)p+strlen(p); pp!=p; p-- )
- {
- if( *pp==c ) break;
- }
- return pp==p ? NULL : pp;
-}
-
-int stricmp( const char *s1, const char *s2 )
-{
- wchar_t *w1, *w2;
- int n;
-
- w1 = wce_mbtowc(s1);
- w2 = wce_mbtowc(s2);
-
- n = wcsicmp(w1, w2);
-
- free(w1);
- free(w2);
-
- return n;
-}
-#endif