4 * Implements C run-time functionality as known from UNIX.
6 * Copyright 1996,1998 Marcus Meissner
7 * Copyright 1996 Jukka Iivonen
8 * Copyright 1997 Uwe Bonnes
12 Unresolved issues Uwe Bonnes 970904:
13 - Handling of Binary/Text Files is crude. If in doubt, use fromdos or recode
14 - Arguments in crtdll.spec for functions with double argument
15 - system-call calls another wine process, but without debugging arguments
16 and uses the first wine executable in the path
17 - tested with ftp://ftp.remcomp.com/pub/remcomp/lcc-win32.zip, a C-Compiler
18 for Win32, based on lcc, from Jacob Navia
21 /* NOTE: This file also implements the wcs* functions. They _ARE_ in
22 * the newer Linux libcs, but use 4 byte wide characters, so are unusable,
23 * since we need 2 byte wide characters. - Marcus Meissner, 981031
26 /* FIXME: all the file handling is hopelessly broken -- AJ */
33 #include <sys/times.h>
53 extern int FILE_GetUnixHandle( HFILE32
);
55 static DOS_FULL_NAME CRTDLL_tmpname
;
57 UINT32 CRTDLL_argc_dll
; /* CRTDLL.23 */
58 LPSTR
*CRTDLL_argv_dll
; /* CRTDLL.24 */
59 LPSTR CRTDLL_acmdln_dll
; /* CRTDLL.38 */
60 UINT32 CRTDLL_basemajor_dll
; /* CRTDLL.42 */
61 UINT32 CRTDLL_baseminor_dll
; /* CRTDLL.43 */
62 UINT32 CRTDLL_baseversion_dll
; /* CRTDLL.44 */
63 UINT32 CRTDLL_commode_dll
; /* CRTDLL.59 */
64 LPSTR CRTDLL_environ_dll
; /* CRTDLL.75 */
65 UINT32 CRTDLL_fmode_dll
; /* CRTDLL.104 */
66 UINT32 CRTDLL_osmajor_dll
; /* CRTDLL.241 */
67 UINT32 CRTDLL_osminor_dll
; /* CRTDLL.242 */
68 UINT32 CRTDLL_osmode_dll
; /* CRTDLL.243 */
69 UINT32 CRTDLL_osver_dll
; /* CRTDLL.244 */
70 UINT32 CRTDLL_osversion_dll
; /* CRTDLL.245 */
71 UINT32 CRTDLL_winmajor_dll
; /* CRTDLL.329 */
72 UINT32 CRTDLL_winminor_dll
; /* CRTDLL.330 */
73 UINT32 CRTDLL_winver_dll
; /* CRTDLL.331 */
75 BYTE CRTDLL_iob
[32*3]; /* FIXME */
77 typedef VOID (*new_handler_type
)(VOID
);
79 static new_handler_type new_handler
;
81 /*********************************************************************
82 * _GetMainArgs (CRTDLL.022)
84 DWORD __cdecl
CRTDLL__GetMainArgs(LPDWORD argc
,LPSTR
**argv
,
85 LPSTR
*environ
,DWORD flag
)
89 int xargc
,i
,afterlastspace
;
92 TRACE(crtdll
,"(%p,%p,%p,%ld).\n",
93 argc
,argv
,environ
,flag
95 CRTDLL_acmdln_dll
= cmdline
= HEAP_strdupA( GetProcessHeap(), 0,
96 GetCommandLine32A() );
97 TRACE(crtdll
,"got '%s'\n", cmdline
);
99 version
= GetVersion32();
100 CRTDLL_osver_dll
= version
>> 16;
101 CRTDLL_winminor_dll
= version
& 0xFF;
102 CRTDLL_winmajor_dll
= (version
>>8) & 0xFF;
103 CRTDLL_baseversion_dll
= version
>> 16;
104 CRTDLL_winver_dll
= ((version
>> 8) & 0xFF) + ((version
& 0xFF) << 8);
105 CRTDLL_baseminor_dll
= (version
>> 16) & 0xFF;
106 CRTDLL_basemajor_dll
= (version
>> 24) & 0xFF;
107 CRTDLL_osversion_dll
= version
& 0xFFFF;
108 CRTDLL_osminor_dll
= version
& 0xFF;
109 CRTDLL_osmajor_dll
= (version
>>8) & 0xFF;
111 /* missing threading init */
113 i
=0;xargv
=NULL
;xargc
=0;afterlastspace
=0;
115 if (cmdline
[i
]==' ') {
116 xargv
=(char**)HeapReAlloc( GetProcessHeap(), 0, xargv
,
117 sizeof(char*)*(++xargc
));
119 xargv
[xargc
-1] = HEAP_strdupA( GetProcessHeap(), 0,
120 cmdline
+afterlastspace
);
122 while (cmdline
[i
]==' ')
129 xargv
=(char**)HeapReAlloc( GetProcessHeap(), 0, xargv
,
130 sizeof(char*)*(++xargc
));
132 xargv
[xargc
-1] = HEAP_strdupA( GetProcessHeap(), 0,
133 cmdline
+afterlastspace
);
134 CRTDLL_argc_dll
= xargc
;
136 CRTDLL_argv_dll
= xargv
;
139 TRACE(crtdll
,"found %d arguments\n",
141 CRTDLL_environ_dll
= *environ
= GetEnvironmentStrings32A();
146 typedef void (*_INITTERMFUN
)();
148 /* fixme: move to header */
151 time_t time_create
; /* -1 when not avaiable */
152 time_t time_access
; /* -1 when not avaiable */
154 unsigned long size
; /* fixme: 64 bit ??*/
157 /*********************************************************************
158 * _findfirst (CRTDLL.099)
163 DWORD __cdecl
CRTDLL__findfirst(LPCSTR fname
, struct find_t
* x2
)
165 FIXME(crtdll
, ":(%s,%p): stub\n",fname
,x2
);
166 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
170 /*********************************************************************
171 * _findnext (CRTDLL.100)
176 INT32 __cdecl
CRTDLL__findnext(DWORD hand
, struct find_t
* x2
)
178 FIXME(crtdll
, ":(%ld,%p): stub\n",hand
,x2
);
179 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
183 /*********************************************************************
184 * _fstat (CRTDLL.111)
189 int __cdecl
CRTDLL__fstat(int file
, struct stat
* buf
)
191 FIXME(crtdll
, ":(%d,%p): stub\n",file
,buf
);
192 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
196 /*********************************************************************
197 * _initterm (CRTDLL.135)
199 DWORD __cdecl
CRTDLL__initterm(_INITTERMFUN
*start
,_INITTERMFUN
*end
)
201 _INITTERMFUN
*current
;
203 TRACE(crtdll
,"(%p,%p)\n",start
,end
);
205 while (current
<end
) {
206 if (*current
) (*current
)();
212 /*********************************************************************
213 * _fdopen (CRTDLL.91)
215 DWORD __cdecl
CRTDLL__fdopen(INT32 handle
, LPCSTR mode
)
223 case 1 : file
=stdout
;
225 case 2 : file
=stderr
;
228 file
=fdopen(handle
,mode
);
230 TRACE(crtdll
, "open handle %d mode %s got file %p\n",
235 static FILE *xlat_file_ptr(void *ptr
)
239 /* CRT sizeof(FILE) == 32 */
240 dif
= ((char *)ptr
- (char *)CRTDLL_iob
) / 32;
243 case 0: return stdin
;
244 case 1: return stdout
;
245 case 2: return stderr
;
250 /*******************************************************************
251 * _global_unwind2 (CRTDLL.129)
253 void __cdecl
CRTDLL__global_unwind2( PEXCEPTION_FRAME frame
)
255 RtlUnwind( frame
, 0, NULL
, 0 );
258 /*******************************************************************
259 * _local_unwind2 (CRTDLL.173)
261 void __cdecl
CRTDLL__local_unwind2( PEXCEPTION_FRAME endframe
, DWORD nr
)
263 TRACE(crtdll
,"(%p,%ld)\n",endframe
,nr
);
265 /*********************************************************************
271 INT32 __cdecl
CRTDLL__read(INT32 fd
, LPVOID buf
, UINT32 count
)
273 FIXME(crtdll
,":(%d,%p,%d): stub\n",fd
,buf
,count
);
274 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
278 /*********************************************************************
281 DWORD __cdecl
CRTDLL_fopen(LPCSTR path
, LPCSTR mode
)
286 DOS_FULL_NAME full_name
;
288 if (!DOSFS_GetFullName( path
, FALSE
, &full_name
)) {
289 WARN(crtdll
, "file %s bad name\n",path
);
293 file
=fopen(full_name
.long_name
,mode
);
298 if ((strchr(mode
,'r')&&strchr(mode
,'a'))||
299 (strchr(mode
,'r')&&strchr(mode
,'w'))||
300 (strchr(mode
,'w')&&strchr(mode
,'a')))
303 if (strstr(mode
,"r+")) flagmode
=O_RDWR
;
304 else if (strchr(mode
,'r')) flagmode
= O_RDONLY
;
305 else if (strstr(mode
,"w+")) flagmode
= O_RDWR
| O_TRUNC
| O_CREAT
;
306 else if (strchr(mode
,'w')) flagmode
= O_WRONLY
| O_TRUNC
| O_CREAT
;
307 else if (strstr(mode
,"a+")) flagmode
= O_RDWR
| O_CREAT
| O_APPEND
;
308 else if (strchr(mode
,'w')) flagmode
= O_RDWR
| O_CREAT
| O_APPEND
;
309 else if (strchr(mode
,'b'))
310 TRACE(crtdll
, "%s in BINARY mode\n",path
);
312 dos_fildes
=FILE_Open(path
, flagmode
,0);
313 unix_fildes
=FILE_GetUnixHandle(dos_fildes
);
314 file
= fdopen(unix_fildes
,mode
);
316 TRACE(crtdll
, "file %s mode %s got ufh %d dfh %d file %p\n",
317 path
,mode
,unix_fildes
,dos_fildes
,file
);
321 /*********************************************************************
324 DWORD __cdecl
CRTDLL_fread(LPVOID ptr
, INT32 size
, INT32 nmemb
, LPVOID vfile
)
327 FILE *file
=xlat_file_ptr(vfile
);
332 /* If we would honour CR/LF <-> LF translation, we could do it like this.
333 We should keep track of all files opened, and probably files with \
334 known binary extensions must be unchanged */
335 while ( (i
< (nmemb
*size
)) && (ret
==1)) {
336 ret
=fread(temp
,1,1,file
);
337 TRACE(crtdll
, "got %c 0x%02x ret %d\n",
338 (isalpha(*(unsigned char*)temp
))? *(unsigned char*)temp
:
339 ' ',*(unsigned char*)temp
, ret
);
340 if (*(unsigned char*)temp
!= 0xd) { /* skip CR */
345 TRACE(crtdll
, "skipping ^M\n");
347 TRACE(crtdll
, "0x%08x items of size %d from file %p to %p\n",
348 nmemb
,size
,file
,ptr
,);
350 WARN(crtdll
, " failed!\n");
355 ret
=fread(ptr
,size
,nmemb
,file
);
356 TRACE(crtdll
, "0x%08x items of size %d from file %p to %p\n",
357 nmemb
,size
,file
,ptr
);
359 WARN(crtdll
, " failed!\n");
364 /*********************************************************************
365 * freopen (CRTDLL.379)
370 DWORD __cdecl
CRTDLL_freopen(LPCSTR path
, LPCSTR mode
, LPVOID stream
)
372 FIXME(crtdll
, ":(%s,%s,%p): stub\n", path
, mode
, stream
);
373 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
377 /*********************************************************************
378 * fscanf (CRTDLL.381)
380 INT32 __cdecl
CRTDLL_fscanf( LPVOID stream
, LPSTR format
, ... )
385 va_start( valist
, format
);
387 res
= vfscanf( xlat_file_ptr(stream
), format
, valist
);
393 /*********************************************************************
396 LONG __cdecl
CRTDLL_fseek(LPVOID stream
, LONG offset
, INT32 whence
)
400 ret
=fseek(xlat_file_ptr(stream
),offset
,whence
);
401 TRACE(crtdll
, "file %p to 0x%08lx pos %s\n",
402 stream
,offset
,(whence
==SEEK_SET
)?"SEEK_SET":
403 (whence
==SEEK_CUR
)?"SEEK_CUR":
404 (whence
==SEEK_END
)?"SEEK_END":"UNKNOWN");
406 WARN(crtdll
, " failed!\n");
411 /*********************************************************************
412 * fsetpos (CRTDLL.383)
414 INT32 __cdecl
CRTDLL_fsetpos(LPVOID stream
, fpos_t *pos
)
416 TRACE(crtdll
, "file %p\n", stream
);
417 return fseek(xlat_file_ptr(stream
), *pos
, SEEK_SET
);
420 /*********************************************************************
423 LONG __cdecl
CRTDLL_ftell(LPVOID stream
)
427 ret
=ftell(xlat_file_ptr(stream
));
428 TRACE(crtdll
, "file %p at 0x%08lx\n",
433 /*********************************************************************
434 * fwrite (CRTDLL.386)
436 DWORD __cdecl
CRTDLL_fwrite(LPVOID ptr
, INT32 size
, INT32 nmemb
, LPVOID vfile
)
439 FILE *file
=xlat_file_ptr(vfile
);
441 ret
=fwrite(ptr
,size
,nmemb
,file
);
442 TRACE(crtdll
, "0x%08x items of size %d from %p to file %p\n",
443 nmemb
,size
,ptr
,file
);
445 WARN(crtdll
, " Failed!\n");
450 /*********************************************************************
451 * setbuf (CRTDLL.452)
453 INT32 __cdecl
CRTDLL_setbuf(LPVOID file
, LPSTR buf
)
455 TRACE(crtdll
, "(file %p buf %p)\n", file
, buf
);
456 /* this doesn't work:"void value not ignored as it ought to be"
457 return setbuf(file,buf);
459 setbuf(xlat_file_ptr(file
),buf
);
463 /*********************************************************************
464 * _open_osfhandle (CRTDLL.240)
466 HFILE32 __cdecl
CRTDLL__open_osfhandle(LONG osfhandle
, INT32 flags
)
471 case STD_INPUT_HANDLE
:
475 case STD_OUTPUT_HANDLE
:
479 case STD_ERROR_HANDLE
:
486 TRACE(crtdll
, "(handle %08lx,flags %d) return %d\n",
487 osfhandle
,flags
,handle
);
492 /*********************************************************************
495 void __cdecl
CRTDLL_srand(DWORD seed
)
497 /* FIXME: should of course be thread? process? local */
501 /*********************************************************************
502 * fprintf (CRTDLL.373)
504 INT32 __cdecl
CRTDLL_fprintf( FILE *file
, LPSTR format
, ... )
509 va_start( valist
, format
);
510 res
= vfprintf( xlat_file_ptr(file
), format
, valist
);
515 /*********************************************************************
516 * vfprintf (CRTDLL.373)
518 INT32 __cdecl
CRTDLL_vfprintf( FILE *file
, LPSTR format
, va_list args
)
520 return vfprintf( xlat_file_ptr(file
), format
, args
);
523 /*********************************************************************
526 time_t __cdecl
CRTDLL_time(time_t *timeptr
)
528 time_t curtime
= time(NULL
);
535 /*********************************************************************
538 clock_t __cdecl
CRTDLL_clock(void)
544 res
= alltimes
.tms_utime
+ alltimes
.tms_stime
+
545 alltimes
.tms_cutime
+ alltimes
.tms_cstime
;
546 /* Fixme: We need some symbolic representation
547 for (Hostsystem_)CLOCKS_PER_SEC
548 and (Emulated_system_)CLOCKS_PER_SEC
549 10 holds only for Windows/Linux_i86)
554 /*********************************************************************
555 * _isatty (CRTDLL.137)
557 BOOL32 __cdecl
CRTDLL__isatty(DWORD x
)
559 TRACE(crtdll
,"(%ld)\n",x
);
563 /*********************************************************************
564 * _write (CRTDLL.332)
566 INT32 __cdecl
CRTDLL__write(INT32 fd
,LPCVOID buf
,UINT32 count
)
573 len
= (UINT32
)write(fd
,buf
,(LONG
)count
);
575 len
= _lwrite32(fd
,buf
,count
);
576 TRACE(crtdll
,"%d/%d byte to dfh %d from %p,\n",
582 /*********************************************************************
585 * FIXME: What the heck is the difference between
586 * FIXME _c_exit (CRTDLL.47)
587 * FIXME _cexit (CRTDLL.49)
588 * FIXME _exit (CRTDLL.87)
589 * FIXME exit (CRTDLL.359)
591 * atexit-processing comes to mind -- MW.
594 void __cdecl
CRTDLL__cexit(INT32 ret
)
596 TRACE(crtdll
,"(%d)\n",ret
);
601 /*********************************************************************
604 void __cdecl
CRTDLL_exit(DWORD ret
)
606 TRACE(crtdll
,"(%ld)\n",ret
);
611 /*********************************************************************
612 * _abnormal_termination (CRTDLL.36)
614 INT32 __cdecl
CRTDLL__abnormal_termination(void)
616 TRACE(crtdll
,"(void)\n");
621 /*********************************************************************
622 * _access (CRTDLL.37)
624 INT32 __cdecl
CRTDLL__access(LPCSTR filename
, INT32 mode
)
626 DWORD attr
= GetFileAttributes32A(filename
);
630 if (GetLastError() == ERROR_INVALID_ACCESS
)
637 if ((attr
& FILE_ATTRIBUTE_READONLY
) && (mode
& W_OK
))
647 /*********************************************************************
648 * fflush (CRTDLL.365)
650 INT32 __cdecl
CRTDLL_fflush(LPVOID stream
)
654 ret
= fflush(xlat_file_ptr(stream
));
655 TRACE(crtdll
,"%p returnd %d\n",stream
,ret
);
657 WARN(crtdll
, " Failed!\n");
663 /*********************************************************************
666 LPSTR __cdecl
CRTDLL_gets(LPSTR buf
)
669 LPSTR buf_start
= buf
;
671 /* BAD, for the whole WINE process blocks... just done this way to test
672 * windows95's ftp.exe.
675 for(cc
= fgetc(stdin
); cc
!= EOF
&& cc
!= '\n'; cc
= fgetc(stdin
))
676 if(cc
!= '\r') *buf
++ = (char)cc
;
680 TRACE(crtdll
,"got '%s'\n", buf_start
);
685 /*********************************************************************
688 INT32 __cdecl
CRTDLL_rand()
694 /*********************************************************************
695 * putchar (CRTDLL.442)
697 void __cdecl
CRTDLL_putchar( INT32 x
)
703 /*********************************************************************
706 INT32 __cdecl
CRTDLL_fputc( INT32 c
, FILE *stream
)
708 TRACE(crtdll
, "%c to file %p\n",c
,stream
);
709 return fputc(c
,xlat_file_ptr(stream
));
713 /*********************************************************************
716 INT32 __cdecl
CRTDLL_fputs( LPCSTR s
, FILE *stream
)
718 TRACE(crtdll
, "%s to file %p\n",s
,stream
);
719 return fputs(s
,xlat_file_ptr(stream
));
723 /*********************************************************************
726 INT32 __cdecl
CRTDLL_puts(LPCSTR s
)
728 TRACE(crtdll
, "%s \n",s
);
733 /*********************************************************************
736 INT32 __cdecl
CRTDLL_putc(INT32 c
, FILE *stream
)
738 TRACE(crtdll
, " %c to file %p\n",c
,stream
);
739 return fputc(c
,xlat_file_ptr(stream
));
741 /*********************************************************************
744 INT32 __cdecl
CRTDLL_fgetc( FILE *stream
)
746 int ret
= fgetc(xlat_file_ptr(stream
));
747 TRACE(crtdll
, "got %d\n",ret
);
752 /*********************************************************************
755 INT32 __cdecl
CRTDLL_getc( FILE *stream
)
757 int ret
= fgetc(xlat_file_ptr(stream
));
758 TRACE(crtdll
, "got %d\n",ret
);
762 /*********************************************************************
765 UINT32 __cdecl
CRTDLL__rotl(UINT32 x
,INT32 shift
)
767 unsigned int ret
= (x
>> shift
)|( x
>>((sizeof(x
))-shift
));
769 TRACE(crtdll
, "got 0x%08x rot %d ret 0x%08x\n",
774 /*********************************************************************
775 * _lrotl (CRTDLL.176)
777 DWORD __cdecl
CRTDLL__lrotl(DWORD x
,INT32 shift
)
779 unsigned long ret
= (x
>> shift
)|( x
>>((sizeof(x
))-shift
));
781 TRACE(crtdll
, "got 0x%08lx rot %d ret 0x%08lx\n",
788 /*********************************************************************
791 CHAR
* __cdecl
CRTDLL_fgets(LPSTR s
,INT32 size
, LPVOID stream
)
796 ret
=fgets(s
, size
,xlat_file_ptr(stream
));
797 /*FIXME: Control with CRTDLL_setmode */
798 control_M
= strrchr(s
,'\r');
799 /*delete CR if we read a DOS File */
805 TRACE(crtdll
, "got %s for %d chars from file %p\n",
808 WARN(crtdll
, " Failed!\n");
814 /*********************************************************************
815 * _mbsicmp (CRTDLL.204)
817 int __cdecl
CRTDLL__mbsicmp(unsigned char *x
,unsigned char *y
)
824 /* FIXME: MBCS handling... */
833 /*********************************************************************
834 * _mbsinc (CRTDLL.205)
836 unsigned char * __cdecl
CRTDLL__mbsinc(unsigned char *x
)
843 /*********************************************************************
844 * vsprintf (CRTDLL.500)
846 INT32 __cdecl
CRTDLL_vsprintf( LPSTR buffer
, LPCSTR spec
, va_list args
)
848 return wvsprintf32A( buffer
, spec
, args
);
851 /*********************************************************************
852 * vswprintf (CRTDLL.501)
854 INT32 __cdecl
CRTDLL_vswprintf( LPWSTR buffer
, LPCWSTR spec
, va_list args
)
856 return wvsprintf32W( buffer
, spec
, args
);
859 /*********************************************************************
860 * _mbscpy (CRTDLL.200)
862 unsigned char* __cdecl
CRTDLL__mbscpy(unsigned char *x
,unsigned char *y
)
864 TRACE(crtdll
,"CRTDLL_mbscpy %s and %s\n",x
,y
);
869 /*********************************************************************
870 * _mbscat (CRTDLL.197)
872 unsigned char* __cdecl
CRTDLL__mbscat(unsigned char *x
,unsigned char *y
)
878 /*********************************************************************
879 * _strcmpi (CRTDLL.282) (CRTDLL.287)
881 INT32 __cdecl
CRTDLL__strcmpi( LPCSTR s1
, LPCSTR s2
)
883 return lstrcmpi32A( s1
, s2
);
887 /*********************************************************************
888 * _strnicmp (CRTDLL.293)
890 INT32 __cdecl
CRTDLL__strnicmp( LPCSTR s1
, LPCSTR s2
, INT32 n
)
892 return lstrncmpi32A( s1
, s2
, n
);
896 /*********************************************************************
897 * _strlwr (CRTDLL.293)
899 * convert a string in place to lowercase
901 LPSTR __cdecl
CRTDLL__strlwr(LPSTR x
)
905 TRACE(crtdll
, "CRTDLL_strlwr got %s\n", x
);
907 if ((*y
> 0x40) && (*y
< 0x5b))
911 TRACE(crtdll
, " returned %s\n", x
);
916 /*********************************************************************
917 * system (CRTDLL.485)
919 INT32 __cdecl
CRTDLL_system(LPSTR x
)
921 #define SYSBUF_LENGTH 1500
922 char buffer
[SYSBUF_LENGTH
];
923 unsigned char *y
= x
;
927 sprintf( buffer
, "%s \"", Options
.argv0
);
928 bp
= buffer
+ strlen(buffer
);
929 i
= strlen(buffer
) + strlen(x
) +2;
931 /* Calculate needed buffer size to prevent overflow. */
936 /* If buffer too short, exit. */
937 if (i
> SYSBUF_LENGTH
) {
938 TRACE(crtdll
,"_system buffer to small\n");
947 if (*(y
-1) =='\\') *bp
++ = '\\';
949 /* Remove spaces from end of string. */
950 while (*(y
-1) == ' ') {
955 TRACE(crtdll
, "_system got '%s', executing '%s'\n",x
,buffer
);
957 return system(buffer
);
960 /*********************************************************************
961 * _strupr (CRTDLL.300)
963 LPSTR __cdecl
CRTDLL__strupr(LPSTR x
)
974 /*********************************************************************
975 * _wcsupr (CRTDLL.328)
977 LPWSTR __cdecl
CRTDLL__wcsupr(LPWSTR x
)
988 /*********************************************************************
989 * _wcslwr (CRTDLL.323)
991 LPWSTR __cdecl
CRTDLL__wcslwr(LPWSTR x
)
1003 /*********************************************************************
1004 * longjmp (CRTDLL.426)
1006 VOID __cdecl
CRTDLL_longjmp(jmp_buf env
, int val
)
1008 FIXME(crtdll
,"CRTDLL_longjmp semistup, expect crash\n");
1009 return longjmp(env
, val
);
1012 /*********************************************************************
1013 * malloc (CRTDLL.427)
1015 VOID
* __cdecl
CRTDLL_malloc(DWORD size
)
1017 return HeapAlloc(GetProcessHeap(),0,size
);
1020 /*********************************************************************
1023 VOID
* __cdecl
CRTDLL_new(DWORD size
)
1026 if(!(result
= HeapAlloc(GetProcessHeap(),0,size
)) && new_handler
)
1031 /*********************************************************************
1032 * set_new_handler(CRTDLL.003)
1034 new_handler_type __cdecl
CRTDLL_set_new_handler(new_handler_type func
)
1036 new_handler_type old_handler
= new_handler
;
1041 /*********************************************************************
1042 * calloc (CRTDLL.350)
1044 VOID
* __cdecl
CRTDLL_calloc(DWORD size
, DWORD count
)
1046 return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, size
* count
);
1049 /*********************************************************************
1050 * realloc (CRTDLL.447)
1052 VOID
* __cdecl
CRTDLL_realloc( VOID
*ptr
, DWORD size
)
1054 return HeapReAlloc( GetProcessHeap(), 0, ptr
, size
);
1057 /*********************************************************************
1060 VOID __cdecl
CRTDLL_free(LPVOID ptr
)
1062 HeapFree(GetProcessHeap(),0,ptr
);
1065 /*********************************************************************
1066 * delete (CRTDLL.002)
1068 VOID __cdecl
CRTDLL_delete(VOID
* ptr
)
1070 HeapFree(GetProcessHeap(),0,ptr
);
1073 /*********************************************************************
1074 * _strdup (CRTDLL.285)
1076 LPSTR __cdecl
CRTDLL__strdup(LPCSTR ptr
)
1078 return HEAP_strdupA(GetProcessHeap(),0,ptr
);
1081 /*********************************************************************
1082 * _wcsdup (CRTDLL.320)
1084 LPWSTR __cdecl
CRTDLL__wcsdup(LPCWSTR ptr
)
1086 return HEAP_strdupW(GetProcessHeap(),0,ptr
);
1089 /*********************************************************************
1090 * fclose (CRTDLL.362)
1092 INT32 __cdecl
CRTDLL_fclose( FILE *stream
)
1095 HFILE32 dos_handle
=1;
1098 stream
=xlat_file_ptr(stream
);
1099 unix_handle
=fileno(stream
);
1101 if (unix_handle
<4) ret
= fclose(stream
);
1103 while(FILE_GetUnixHandle(dos_handle
) != unix_handle
) dos_handle
++;
1105 ret
= _lclose32( dos_handle
);
1107 TRACE(crtdll
,"(%p) ufh %d dfh %d\n",
1108 stream
,unix_handle
,dos_handle
);
1111 WARN(crtdll
, " Failed!\n");
1116 /*********************************************************************
1117 * _unlink (CRTDLL.315)
1119 INT32 __cdecl
CRTDLL__unlink(LPCSTR pathname
)
1122 DOS_FULL_NAME full_name
;
1124 if (!DOSFS_GetFullName( pathname
, FALSE
, &full_name
)) {
1125 WARN(crtdll
, "CRTDLL_unlink file %s bad name\n",pathname
);
1129 ret
=unlink(full_name
.long_name
);
1130 TRACE(crtdll
,"(%s unix %s)\n",
1131 pathname
,full_name
.long_name
);
1133 WARN(crtdll
, " Failed!\n");
1138 /*********************************************************************
1139 * rename (CRTDLL.449)
1141 INT32 __cdecl
CRTDLL_rename(LPCSTR oldpath
,LPCSTR newpath
)
1143 BOOL32 ok
= MoveFileEx32A( oldpath
, newpath
, MOVEFILE_REPLACE_EXISTING
);
1148 /*********************************************************************
1149 * _stat (CRTDLL.280)
1167 int __cdecl
CRTDLL__stat(const char * filename
, struct win_stat
* buf
)
1170 DOS_FULL_NAME full_name
;
1173 if (!DOSFS_GetFullName( filename
, TRUE
, &full_name
))
1175 WARN(crtdll
, "CRTDLL__stat filename %s bad name\n",filename
);
1178 ret
=stat(full_name
.long_name
,&mystat
);
1179 TRACE(crtdll
,"CRTDLL__stat %s\n", filename
);
1181 WARN(crtdll
, " Failed!\n");
1183 /* FIXME: should check what Windows returns */
1185 buf
->win_st_dev
= mystat
.st_dev
;
1186 buf
->win_st_ino
= mystat
.st_ino
;
1187 buf
->win_st_mode
= mystat
.st_mode
;
1188 buf
->win_st_nlink
= mystat
.st_nlink
;
1189 buf
->win_st_uid
= mystat
.st_uid
;
1190 buf
->win_st_gid
= mystat
.st_gid
;
1191 buf
->win_st_rdev
= mystat
.st_rdev
;
1192 buf
->win_st_size
= mystat
.st_size
;
1193 buf
->win_st_atime
= mystat
.st_atime
;
1194 buf
->win_st_mtime
= mystat
.st_mtime
;
1195 buf
->win_st_ctime
= mystat
.st_ctime
;
1199 /*********************************************************************
1200 * _open (CRTDLL.239)
1202 HFILE32 __cdecl
CRTDLL__open(LPCSTR path
,INT32 flags
)
1208 the flags in lcc's header differ from the ones in Linux, e.g.
1209 Linux: define O_APPEND 02000 (= 0x400)
1210 lcc: define _O_APPEND 0x0008
1211 so here a scheme to translate them
1212 Probably lcc is wrong here, but at least a hack to get is going
1214 wineflags
= (flags
& 3);
1215 if (flags
& 0x0008 ) wineflags
|= O_APPEND
;
1216 if (flags
& 0x0100 ) wineflags
|= O_CREAT
;
1217 if (flags
& 0x0200 ) wineflags
|= O_TRUNC
;
1218 if (flags
& 0x0400 ) wineflags
|= O_EXCL
;
1219 if (flags
& 0xf0f4 )
1220 TRACE(crtdll
,"CRTDLL_open file unsupported flags 0x%04x\n",flags
);
1223 ret
= FILE_Open(path
,wineflags
,0);
1224 TRACE(crtdll
,"CRTDLL_open file %s mode 0x%04x (lccmode 0x%04x) got dfh %d\n",
1225 path
,wineflags
,flags
,ret
);
1229 /*********************************************************************
1230 * _close (CRTDLL.57)
1232 INT32 __cdecl
CRTDLL__close(HFILE32 fd
)
1234 int ret
=_lclose32(fd
);
1236 TRACE(crtdll
,"(%d)\n",fd
);
1238 WARN(crtdll
, " Failed!\n");
1243 /*********************************************************************
1246 INT32 __cdecl
CRTDLL_feof( FILE *stream
)
1250 ret
=feof(xlat_file_ptr(stream
));
1251 TRACE(crtdll
,"(%p) %s\n",stream
,(ret
)?"true":"false");
1255 /*********************************************************************
1256 * setlocale (CRTDLL.453)
1258 LPSTR __cdecl
CRTDLL_setlocale(INT32 category
,LPCSTR locale
)
1263 case CRTDLL_LC_ALL
: categorystr
="LC_ALL";break;
1264 case CRTDLL_LC_COLLATE
: categorystr
="LC_COLLATE";break;
1265 case CRTDLL_LC_CTYPE
: categorystr
="LC_CTYPE";break;
1266 case CRTDLL_LC_MONETARY
: categorystr
="LC_MONETARY";break;
1267 case CRTDLL_LC_NUMERIC
: categorystr
="LC_NUMERIC";break;
1268 case CRTDLL_LC_TIME
: categorystr
="LC_TIME";break;
1269 default: categorystr
= "UNKNOWN?";break;
1271 FIXME(crtdll
,"(%s,%s),stub!\n",categorystr
,locale
);
1275 /*********************************************************************
1276 * wcscat (CRTDLL.503)
1278 LPWSTR __cdecl
CRTDLL_wcscat( LPWSTR s1
, LPCWSTR s2
)
1280 return lstrcat32W( s1
, s2
);
1283 /*********************************************************************
1284 * wcschr (CRTDLL.504)
1286 LPWSTR __cdecl
CRTDLL_wcschr(LPCWSTR str
,WCHAR xchar
)
1298 /*********************************************************************
1299 * wcscmp (CRTDLL.505)
1301 INT32 __cdecl
CRTDLL_wcscmp( LPCWSTR s1
, LPCWSTR s2
)
1303 return lstrcmp32W( s1
, s2
);
1306 /*********************************************************************
1307 * wcscpy (CRTDLL.507)
1309 LPWSTR __cdecl
CRTDLL_wcscpy( LPWSTR s1
, LPCWSTR s2
)
1311 return lstrcpy32W( s1
, s2
);
1314 /*********************************************************************
1315 * wcscspn (CRTDLL.508)
1317 INT32 __cdecl
CRTDLL_wcscspn(LPWSTR str
,LPWSTR reject
)
1324 while (*t
) { if (*t
==*s
) break;t
++;}
1328 return s
-str
; /* nr of wchars */
1331 /*********************************************************************
1332 * wcslen (CRTDLL.510)
1334 INT32 __cdecl
CRTDLL_wcslen( LPCWSTR s
)
1336 return lstrlen32W( s
);
1339 /*********************************************************************
1340 * wcsncat (CRTDLL.511)
1342 LPWSTR __cdecl
CRTDLL_wcsncat( LPWSTR s1
, LPCWSTR s2
, INT32 n
)
1344 return lstrcatn32W( s1
, s2
, n
);
1347 /*********************************************************************
1348 * wcsncmp (CRTDLL.512)
1350 INT32 __cdecl
CRTDLL_wcsncmp( LPCWSTR s1
, LPCWSTR s2
, INT32 n
)
1352 return lstrncmp32W( s1
, s2
, n
);
1355 /*********************************************************************
1356 * wcsncpy (CRTDLL.513)
1358 LPWSTR __cdecl
CRTDLL_wcsncpy( LPWSTR s1
, LPCWSTR s2
, INT32 n
)
1360 return lstrcpyn32W( s1
, s2
, n
);
1363 /*********************************************************************
1364 * wcsspn (CRTDLL.516)
1366 INT32 __cdecl
CRTDLL_wcsspn(LPWSTR str
,LPWSTR accept
)
1373 while (*t
) { if (*t
==*s
) break;t
++;}
1377 return s
-str
; /* nr of wchars */
1380 /*********************************************************************
1381 * _wcsicmp (CRTDLL.321)
1383 DWORD __cdecl
CRTDLL__wcsicmp( LPCWSTR s1
, LPCWSTR s2
)
1385 return lstrcmpi32W( s1
, s2
);
1388 /*********************************************************************
1389 * _wcsicoll (CRTDLL.322)
1391 DWORD __cdecl
CRTDLL__wcsicoll(LPCWSTR a1
,LPCWSTR a2
)
1393 /* FIXME: handle collates */
1394 return lstrcmpi32W(a1
,a2
);
1397 /*********************************************************************
1398 * _wcsnicmp (CRTDLL.324)
1400 DWORD __cdecl
CRTDLL__wcsnicmp( LPCWSTR s1
, LPCWSTR s2
, INT32 len
)
1402 return lstrncmpi32W( s1
, s2
, len
);
1405 /*********************************************************************
1406 * wcscoll (CRTDLL.506)
1408 DWORD __cdecl
CRTDLL_wcscoll(LPWSTR a1
,LPWSTR a2
)
1410 /* FIXME: handle collates */
1411 return lstrcmp32W(a1
,a2
);
1414 /*********************************************************************
1415 * _wcsrev (CRTDLL.326)
1417 VOID __cdecl
CRTDLL__wcsrev(LPWSTR s
) {
1431 /*********************************************************************
1432 * wcsstr (CRTDLL.517)
1434 LPWSTR __cdecl
CRTDLL_wcsstr(LPWSTR s
,LPWSTR b
)
1442 while (*y
&& *c
&& *y
==*c
) { c
++;y
++; }
1451 /*********************************************************************
1452 * wcstombs (CRTDLL.521)
1454 INT32 __cdecl
CRTDLL_wcstombs( LPSTR dst
, LPCWSTR src
, INT32 len
)
1456 lstrcpynWtoA( dst
, src
, len
);
1457 return strlen(dst
); /* FIXME: is this right? */
1460 /*********************************************************************
1461 * wcsrchr (CRTDLL.515)
1463 LPWSTR __cdecl
CRTDLL_wcsrchr(LPWSTR str
,WCHAR xchar
)
1467 s
=str
+lstrlen32W(str
);
1476 /*********************************************************************
1477 * _setmode (CRTDLL.265)
1478 * FIXME: At present we ignore the request to translate CR/LF to LF.
1480 * We allways translate when we read with fgets, we never do with fread
1483 INT32 __cdecl
CRTDLL__setmode( INT32 fh
,INT32 mode
)
1486 #define O_TEXT 0x4000
1487 #define O_BINARY 0x8000
1489 FIXME(crtdll
, "on fhandle %d mode %s, STUB.\n",
1490 fh
,(mode
=O_TEXT
)?"O_TEXT":
1491 (mode
=O_BINARY
)?"O_BINARY":"UNKNOWN");
1495 /*********************************************************************
1496 * _fpreset (CRTDLL.107)
1498 VOID __cdecl
CRTDLL__fpreset(void)
1500 FIXME(crtdll
," STUB.\n");
1503 /*********************************************************************
1504 * atexit (CRTDLL.345)
1506 INT32 __cdecl
CRTDLL_atexit(LPVOID x
)
1508 FIXME(crtdll
,"(%p), STUB.\n",x
);
1509 return 0; /* successful */
1512 /*********************************************************************
1513 * mblen (CRTDLL.428)
1514 * FIXME: check multibyte support
1516 WCHAR __cdecl
CRTDLL_mblen(CHAR
*mb
,INT32 size
)
1523 else if ((size
<1)||(!*(mb
+1)))
1528 TRACE(crtdll
,"CRTDLL_mlen %s for max %d bytes ret %d\n",mb
,size
,ret
);
1533 /*********************************************************************
1534 * mbstowcs (CRTDLL.429)
1535 * FIXME: check multibyte support
1537 INT32 __cdecl
CRTDLL_mbstowcs(LPWSTR wcs
, LPCSTR mbs
, INT32 size
)
1540 /* Slightly modified lstrcpynAtoW functions from memory/strings.c
1541 * We need the number of characters transfered
1542 * FIXME: No multibyte support yet
1549 while ((n
-- > 0) && *src
) {
1550 *p
++ = (WCHAR
)(unsigned char)*src
++;
1555 TRACE(crtdll
,"CRTDLL_mbstowcs %s for %d chars put %d wchars\n",
1560 /*********************************************************************
1561 * mbtowc (CRTDLL.430)
1562 * FIXME: check multibyte support
1564 WCHAR __cdecl
CRTDLL_mbtowc(WCHAR
* wc
,CHAR
* mb
,INT32 size
)
1573 if ( (ret
= mblen(mb
,size
)) != -1 )
1575 if (ret
<= sizeof(char))
1576 *wc
= (WCHAR
) ((unsigned char)*mb
);
1583 TRACE(crtdll
,"CRTDLL_mbtowc %s for %d chars\n",mb
,size
);
1588 /*********************************************************************
1589 * _isctype (CRTDLL.138)
1591 BOOL32 __cdecl
CRTDLL__isctype(CHAR x
,CHAR type
)
1593 if ((type
& CRTDLL_SPACE
) && isspace(x
))
1595 if ((type
& CRTDLL_PUNCT
) && ispunct(x
))
1597 if ((type
& CRTDLL_LOWER
) && islower(x
))
1599 if ((type
& CRTDLL_UPPER
) && isupper(x
))
1601 if ((type
& CRTDLL_ALPHA
) && isalpha(x
))
1603 if ((type
& CRTDLL_DIGIT
) && isdigit(x
))
1605 if ((type
& CRTDLL_CONTROL
) && iscntrl(x
))
1607 /* check CRTDLL_LEADBYTE */
1611 /*********************************************************************
1612 * _chdrive (CRTDLL.52)
1614 * newdir [I] drive to change to, A=1
1617 BOOL32 __cdecl
CRTDLL__chdrive(INT32 newdrive
)
1619 /* FIXME: generates errnos */
1620 return DRIVE_SetCurrentDrive(newdrive
-1);
1623 /*********************************************************************
1624 * _chdir (CRTDLL.51)
1626 INT32 __cdecl
CRTDLL__chdir(LPCSTR newdir
)
1628 if (!SetCurrentDirectory32A(newdir
))
1633 /*********************************************************************
1634 * _fullpath (CRTDLL.114)
1636 LPSTR __cdecl
CRTDLL__fullpath(LPSTR buf
, LPCSTR name
, INT32 size
)
1638 DOS_FULL_NAME full_name
;
1643 if(!(buf
= CRTDLL_malloc(size
))) return NULL
;
1645 if (!DOSFS_GetFullName( name
, FALSE
, &full_name
)) return NULL
;
1646 lstrcpyn32A(buf
,full_name
.short_name
,size
);
1647 TRACE(crtdll
,"CRTDLL_fullpath got %s\n",buf
);
1651 /*********************************************************************
1652 * _splitpath (CRTDLL.279)
1654 VOID __cdecl
CRTDLL__splitpath(LPCSTR path
, LPSTR drive
, LPSTR directory
, LPSTR filename
, LPSTR extension
)
1657 directory includes leading and trailing (forward and backward slashes)
1658 filename without dot and slashes
1659 extension with leading dot
1661 char * drivechar
,*dirchar
,*namechar
;
1663 TRACE(crtdll
,"CRTDLL__splitpath got %s\n",path
);
1665 drivechar
= strchr(path
,':');
1666 dirchar
= strrchr(path
,'/');
1667 namechar
= strrchr(path
,'\\');
1668 dirchar
= MAX(dirchar
,namechar
);
1670 namechar
= strrchr(dirchar
,'.');
1672 namechar
= strrchr(path
,'.');
1680 strncat(drive
,path
,drivechar
-path
+1);
1689 strncat(directory
,path
,dirchar
-path
+1);
1698 strncat(filename
,path
,namechar
-path
);
1702 strcat(extension
,namechar
);
1707 TRACE(crtdll
,"CRTDLL__splitpath found %s %s %s %s\n",drive
,directory
,filename
,extension
);
1711 /*********************************************************************
1712 * _getcwd (CRTDLL.120)
1714 CHAR
* __cdecl
CRTDLL__getcwd(LPSTR buf
, INT32 size
)
1721 if (size
< 0) /* allocate as big as nescessary */
1722 len
=GetCurrentDirectory32A(1,test
) + 1;
1723 if(!(buf
= CRTDLL_malloc(len
)))
1725 /* set error to OutOfRange */
1730 if(!(len
=GetCurrentDirectory32A(len
,buf
)))
1736 /* set error to ERANGE */
1737 TRACE(crtdll
,"CRTDLL_getcwd buffer to small\n");
1744 /*********************************************************************
1745 * _getdcwd (CRTDLL.121)
1747 CHAR
* __cdecl
CRTDLL__getdcwd(INT32 drive
,LPSTR buf
, INT32 size
)
1752 FIXME(crtdll
,"(\"%c:\",%s,%d)\n",drive
+'A',buf
,size
);
1755 if (size
< 0) /* allocate as big as nescessary */
1756 len
=GetCurrentDirectory32A(1,test
) + 1;
1757 if(!(buf
= CRTDLL_malloc(len
)))
1759 /* set error to OutOfRange */
1764 if(!(len
=GetCurrentDirectory32A(len
,buf
)))
1770 /* set error to ERANGE */
1771 TRACE(crtdll
,"buffer to small\n");
1778 /*********************************************************************
1779 * _getdrive (CRTDLL.124)
1781 * Return current drive, 1 for A, 2 for B
1783 INT32 __cdecl
CRTDLL__getdrive(VOID
)
1785 return DRIVE_GetCurrentDrive() + 1;
1788 /*********************************************************************
1789 * _mkdir (CRTDLL.234)
1791 INT32 __cdecl
CRTDLL__mkdir(LPCSTR newdir
)
1793 if (!CreateDirectory32A(newdir
,NULL
))
1798 /*********************************************************************
1799 * remove (CRTDLL.448)
1801 INT32 __cdecl
CRTDLL_remove(LPCSTR file
)
1803 if (!DeleteFile32A(file
))
1808 /*********************************************************************
1809 * _errno (CRTDLL.52)
1810 * Yes, this is a function.
1812 LPINT32 __cdecl
CRTDLL__errno()
1814 static int crtdllerrno
;
1816 /* FIXME: we should set the error at the failing function call time */
1817 crtdllerrno
= LastErrorToErrno(GetLastError());
1818 return &crtdllerrno
;
1821 /*********************************************************************
1822 * _tempnam (CRTDLL.305)
1825 LPSTR __cdecl
CRTDLL__tempnam(LPCSTR dir
, LPCSTR prefix
)
1829 DOS_FULL_NAME tempname
;
1831 if ((ret
= tempnam(dir
,prefix
))==NULL
) {
1832 WARN(crtdll
, "Unable to get unique filename\n");
1835 if (!DOSFS_GetFullName(ret
,FALSE
,&tempname
))
1837 TRACE(crtdll
, "Wrong path?\n");
1841 if ((ret
= CRTDLL_malloc(strlen(tempname
.short_name
)+1)) == NULL
) {
1842 WARN(crtdll
, "CRTDL_malloc for shortname failed\n");
1845 if ((ret
= strcpy(ret
,tempname
.short_name
)) == NULL
) {
1846 WARN(crtdll
, "Malloc for shortname failed\n");
1850 TRACE(crtdll
,"dir %s prefix %s got %s\n",
1855 /*********************************************************************
1856 * tmpnam (CRTDLL.490)
1858 * lcclnk from lcc-win32 relies on a terminating dot in the name returned
1861 LPSTR __cdecl
CRTDLL_tmpnam(LPSTR s
)
1865 if ((ret
=tmpnam(s
))== NULL
) {
1866 WARN(crtdll
, "Unable to get unique filename\n");
1869 if (!DOSFS_GetFullName(ret
,FALSE
,&CRTDLL_tmpname
))
1871 TRACE(crtdll
, "Wrong path?\n");
1874 strcat(CRTDLL_tmpname
.short_name
,".");
1875 TRACE(crtdll
,"for buf %p got %s\n",
1876 s
,CRTDLL_tmpname
.short_name
);
1877 TRACE(crtdll
,"long got %s\n",
1878 CRTDLL_tmpname
.long_name
);
1880 return strcpy(s
,CRTDLL_tmpname
.short_name
);
1882 return CRTDLL_tmpname
.short_name
;
1886 /*********************************************************************
1887 * _itoa (CRTDLL.165)
1889 LPSTR __cdecl
CRTDLL__itoa(INT32 x
,LPSTR buf
,INT32 buflen
)
1891 wsnprintf32A(buf
,buflen
,"%d",x
);
1895 /*********************************************************************
1896 * _ltoa (CRTDLL.180)
1898 LPSTR __cdecl
CRTDLL__ltoa(long x
,LPSTR buf
,INT32 radix
)
1901 case 2: FIXME(crtdll
, "binary format not implemented !\n");
1903 case 8: wsnprintf32A(buf
,0x80,"%o",x
);
1905 case 10: wsnprintf32A(buf
,0x80,"%d",x
);
1907 case 16: wsnprintf32A(buf
,0x80,"%x",x
);
1909 default: FIXME(crtdll
, "radix %d not implemented !\n", radix
);
1914 typedef VOID (*sig_handler_type
)(VOID
);
1916 /*********************************************************************
1917 * signal (CRTDLL.455)
1919 VOID __cdecl
CRTDLL_signal(int sig
, sig_handler_type ptr
)
1921 FIXME(crtdll
, "(%d %p):stub.\n", sig
, ptr
);
1924 /*********************************************************************
1925 * _ftol (CRTDLL.113)
1927 LONG __cdecl
CRTDLL__ftol(double fl
) {
1930 /*********************************************************************
1931 * _sleep (CRTDLL.267)
1933 VOID __cdecl
CRTDLL__sleep(unsigned long timeout
)
1935 TRACE(crtdll
,"CRTDLL__sleep for %ld milliseconds\n",timeout
);
1936 Sleep((timeout
)?timeout
:1);
1939 /*********************************************************************
1940 * getenv (CRTDLL.437)
1942 LPSTR __cdecl
CRTDLL_getenv(const char *name
)
1944 LPSTR environ
= GetEnvironmentStrings32A();
1945 LPSTR pp
,pos
= NULL
;
1946 unsigned int length
;
1948 for (pp
= environ
; (*pp
); pp
= pp
+ strlen(pp
) +1)
1950 pos
=strchr(pp
,'=');
1954 length
= strlen(pp
);
1955 if (!strncmp(pp
,name
,length
)) break;
1960 TRACE(crtdll
,"got %s\n",pp
);
1962 FreeEnvironmentStrings32A( environ
);
1966 /*********************************************************************
1967 * _mbsrchr (CRTDLL.223)
1969 LPSTR __cdecl
CRTDLL__mbsrchr(LPSTR s
,CHAR x
) {
1970 /* FIXME: handle multibyte strings */
1971 return strrchr(s
,x
);
1974 /*********************************************************************
1975 * _memicmp (CRTDLL.233)(NTDLL.868)
1976 * A stringcompare, without \0 check
1978 * -1:if first string is alphabetically before second string
1979 * 1:if second '' '' '' '' first ''
1980 * 0:if both are equal.
1982 INT32 __cdecl
CRTDLL__memicmp(
1983 LPCSTR s1
, /* [in] first string */
1984 LPCSTR s2
, /* [in] second string */
1985 DWORD len
/* [in] length to compare */
1989 for (i
=0;i
<len
;i
++) {
1990 if (tolower(s1
[i
])<tolower(s2
[i
]))
1992 if (tolower(s1
[i
])>tolower(s2
[i
]))
1997 /*********************************************************************
1998 * __dllonexit (CRTDLL.25)
2000 VOID __cdecl
CRTDLL__dllonexit ()
2002 FIXME(crtdll
,"stub\n");
2005 /*********************************************************************
2006 * wcstok (CRTDLL.519)
2007 * Like strtok, but for wide character strings. s is modified, yes.
2009 LPWSTR
CRTDLL_wcstok(LPWSTR s
,LPCWSTR delim
) {
2010 static LPWSTR nexttok
= NULL
;
2018 while (*x
&& !CRTDLL_wcschr(delim
,*x
))
2029 /*********************************************************************
2030 * wcstol (CRTDLL.520)
2031 * Like strtol, but for wide character strings.
2033 INT32
CRTDLL_wcstol(LPWSTR s
,LPWSTR
*end
,INT32 base
) {
2034 LPSTR sA
= HEAP_strdupWtoA(GetProcessHeap(),0,s
),endA
;
2035 INT32 ret
= strtol(sA
,&endA
,base
);
2037 HeapFree(GetProcessHeap(),0,sA
);
2038 if (end
) *end
= s
+(endA
-sA
); /* pointer magic checked. */
2041 /*********************************************************************
2042 * strdate (CRTDLL.283)
2044 LPSTR __cdecl
CRTDLL__strdate (LPSTR date
)
2045 { FIXME (crtdll
,"%p stub\n", date
);
2048 /*********************************************************************
2049 * strtime (CRTDLL.299)
2051 LPSTR __cdecl
CRTDLL__strtime (LPSTR date
)
2052 { FIXME (crtdll
,"%p stub\n", date
);