summaryrefslogtreecommitdiff
path: root/wince/string.c
diff options
context:
space:
mode:
authoruema2 <uema2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-10 09:59:11 +0000
committeruema2 <uema2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-10 09:59:11 +0000
commitb2bb895aab7422fd95ce883be5b19d2f82981da5 (patch)
tree5c6c3e2cddee9ea2cfb0b14e89f857dd26e927a6 /wince/string.c
parent45278aeb762beec8d9611cb55b682f13253ae4b1 (diff)
Sat May 10 19:01:00 2003 Takaaki Uematsu <uema2x@jcom.home.ne.jp>
* wince/string.c: file removed. * wince/stdlib.c: file added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3777 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'wince/string.c')
-rw-r--r--wince/string.c71
1 files changed, 0 insertions, 71 deletions
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