From d927063dd44b383f0379313507d78e88266fdcf9 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Tue, 11 May 1999 12:40:59 +0000 Subject: [PATCH] Not needed any longer. svn path=/trunk/; revision=446 --- rosapps/cmd/ros.c | 123 ---------------------------------------------- 1 file changed, 123 deletions(-) delete mode 100644 rosapps/cmd/ros.c diff --git a/rosapps/cmd/ros.c b/rosapps/cmd/ros.c deleted file mode 100644 index 53e6ba60025..00000000000 --- a/rosapps/cmd/ros.c +++ /dev/null @@ -1,123 +0,0 @@ - -#include "config.h" - -#ifdef __REACTOS__ - -#include -#include -#include - - -void* malloc(size_t _size) -{ - return(HeapAlloc(GetProcessHeap(), - 0, - _size)); -} - - -void free(void* _ptr) -{ - HeapFree(GetProcessHeap(), - 0, - _ptr); -} - - -void* realloc(void* _ptr, size_t _size) -{ - return(HeapReAlloc(GetProcessHeap(), - 0, - _ptr, - _size)); -} - - -char *_strdup(const char *_s) -{ - char *rv; - if (_s == 0) - return 0; - rv = (char *)malloc(strlen(_s) + 1); - if (rv == 0) - return 0; - strcpy(rv, _s); - return rv; -} - - -void _makepath( char *path, const char *drive, const char *dir, const char *fname, const char *ext ) -{ - int dir_len; - if ( drive != NULL ) { - strcat(path,drive); - strcat(path,":"); - } - - if ( dir != NULL ) { - strcat(path,dir); - if ( *dir != '\\' ) - strcat(path,"\\"); - dir_len = strlen(dir); - if ( *(dir + dir_len - 1) != '\\' ) - strcat(path,"\\"); - } - if ( fname != NULL ) { - strcat(path,fname); - if ( ext != NULL ) { - if ( *ext != '.') - strcat(path,"."); - strcat(path,ext); - } - } -} - - -char *strtok(char *s, const char *delim) -{ - const char *spanp; - int c, sc; - char *tok; - static char *last; - - if (s == NULL && (s = last) == NULL) - return (NULL); - - /* - * Skip (span) leading delimiters (s += strspn(s, delim), sort of). - */ - cont: - c = *s++; - for (spanp = delim; (sc = *spanp++) != 0;) { - if (c == sc) - goto cont; - } - - if (c == 0) { /* no non-delimiter characters */ - last = NULL; - return (NULL); - } - tok = s - 1; - - /* - * Scan token (scan for delimiters: s += strcspn(s, delim), sort of). - * Note that delim must have one NUL; we stop if we see that, too. - */ - for (;;) { - c = *s++; - spanp = delim; - do { - if ((sc = *spanp++) == c) { - if (c == 0) - s = NULL; - else - s[-1] = 0; - last = s; - return (tok); - } - } while (sc != 0); - } - /* NOTREACHED */ -} - -#endif