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
20 - needs a proper stdio emulation based on Win32 file handles
21 - should set CRTDLL errno from GetLastError() in every function
24 /* NOTE: This file also implements the wcs* functions. They _ARE_ in
25 * the newer Linux libcs, but use 4 byte wide characters, so are unusable,
26 * since we need 2 byte wide characters. - Marcus Meissner, 981031
34 #include <sys/times.h>
54 static DOS_FULL_NAME CRTDLL_tmpname
;
56 UINT CRTDLL_argc_dll
; /* CRTDLL.23 */
57 LPSTR
*CRTDLL_argv_dll
; /* CRTDLL.24 */
58 LPSTR CRTDLL_acmdln_dll
; /* CRTDLL.38 */
59 UINT CRTDLL_basemajor_dll
; /* CRTDLL.42 */
60 UINT CRTDLL_baseminor_dll
; /* CRTDLL.43 */
61 UINT CRTDLL_baseversion_dll
; /* CRTDLL.44 */
62 UINT CRTDLL_commode_dll
; /* CRTDLL.59 */
63 LPSTR CRTDLL_environ_dll
; /* CRTDLL.75 */
64 UINT CRTDLL_fmode_dll
; /* CRTDLL.104 */
65 UINT CRTDLL_osmajor_dll
; /* CRTDLL.241 */
66 UINT CRTDLL_osminor_dll
; /* CRTDLL.242 */
67 UINT CRTDLL_osmode_dll
; /* CRTDLL.243 */
68 UINT CRTDLL_osver_dll
; /* CRTDLL.244 */
69 UINT CRTDLL_osversion_dll
; /* CRTDLL.245 */
70 UINT CRTDLL_winmajor_dll
; /* CRTDLL.329 */
71 UINT CRTDLL_winminor_dll
; /* CRTDLL.330 */
72 UINT CRTDLL_winver_dll
; /* CRTDLL.331 */
74 /* FIXME: structure layout is obviously not correct */
81 CRTDLL_FILE CRTDLL_iob
[3];
83 static CRTDLL_FILE
* const CRTDLL_stdin
= &CRTDLL_iob
[0];
84 static CRTDLL_FILE
* const CRTDLL_stdout
= &CRTDLL_iob
[1];
85 static CRTDLL_FILE
* const CRTDLL_stderr
= &CRTDLL_iob
[2];
87 typedef VOID (*new_handler_type
)(VOID
);
89 static new_handler_type new_handler
;
91 /*********************************************************************
92 * _GetMainArgs (CRTDLL.022)
94 DWORD __cdecl
CRTDLL__GetMainArgs(LPDWORD argc
,LPSTR
**argv
,
95 LPSTR
*environ
,DWORD flag
)
99 int xargc
,i
,afterlastspace
;
102 TRACE(crtdll
,"(%p,%p,%p,%ld).\n",
103 argc
,argv
,environ
,flag
105 CRTDLL_acmdln_dll
= cmdline
= HEAP_strdupA( GetProcessHeap(), 0,
107 TRACE(crtdll
,"got '%s'\n", cmdline
);
109 version
= GetVersion();
110 CRTDLL_osver_dll
= version
>> 16;
111 CRTDLL_winminor_dll
= version
& 0xFF;
112 CRTDLL_winmajor_dll
= (version
>>8) & 0xFF;
113 CRTDLL_baseversion_dll
= version
>> 16;
114 CRTDLL_winver_dll
= ((version
>> 8) & 0xFF) + ((version
& 0xFF) << 8);
115 CRTDLL_baseminor_dll
= (version
>> 16) & 0xFF;
116 CRTDLL_basemajor_dll
= (version
>> 24) & 0xFF;
117 CRTDLL_osversion_dll
= version
& 0xFFFF;
118 CRTDLL_osminor_dll
= version
& 0xFF;
119 CRTDLL_osmajor_dll
= (version
>>8) & 0xFF;
121 /* missing threading init */
123 i
=0;xargv
=NULL
;xargc
=0;afterlastspace
=0;
125 if (cmdline
[i
]==' ') {
126 xargv
=(char**)HeapReAlloc( GetProcessHeap(), 0, xargv
,
127 sizeof(char*)*(++xargc
));
129 xargv
[xargc
-1] = HEAP_strdupA( GetProcessHeap(), 0,
130 cmdline
+afterlastspace
);
132 while (cmdline
[i
]==' ')
139 xargv
=(char**)HeapReAlloc( GetProcessHeap(), 0, xargv
,
140 sizeof(char*)*(++xargc
));
142 xargv
[xargc
-1] = HEAP_strdupA( GetProcessHeap(), 0,
143 cmdline
+afterlastspace
);
144 CRTDLL_argc_dll
= xargc
;
146 CRTDLL_argv_dll
= xargv
;
149 TRACE(crtdll
,"found %d arguments\n",
151 CRTDLL_environ_dll
= *environ
= GetEnvironmentStringsA();
156 typedef void (*_INITTERMFUN
)();
158 /* fixme: move to header */
161 time_t time_create
; /* -1 when not avaiable */
162 time_t time_access
; /* -1 when not avaiable */
164 unsigned long size
; /* fixme: 64 bit ??*/
167 /*********************************************************************
168 * _findfirst (CRTDLL.099)
173 DWORD __cdecl
CRTDLL__findfirst(LPCSTR fname
, struct find_t
* x2
)
175 FIXME(crtdll
, ":(%s,%p): stub\n",fname
,x2
);
176 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
180 /*********************************************************************
181 * _findnext (CRTDLL.100)
186 INT __cdecl
CRTDLL__findnext(DWORD hand
, struct find_t
* x2
)
188 FIXME(crtdll
, ":(%ld,%p): stub\n",hand
,x2
);
189 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
193 /*********************************************************************
194 * _fstat (CRTDLL.111)
199 int __cdecl
CRTDLL__fstat(int file
, struct stat
* buf
)
201 FIXME(crtdll
, ":(%d,%p): stub\n",file
,buf
);
202 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
206 /*********************************************************************
207 * _initterm (CRTDLL.135)
209 DWORD __cdecl
CRTDLL__initterm(_INITTERMFUN
*start
,_INITTERMFUN
*end
)
211 _INITTERMFUN
*current
;
213 TRACE(crtdll
,"(%p,%p)\n",start
,end
);
215 while (current
<end
) {
216 if (*current
) (*current
)();
222 /*********************************************************************
223 * _fdopen (CRTDLL.91)
225 CRTDLL_FILE
* __cdecl
CRTDLL__fdopen(INT handle
, LPCSTR mode
)
233 if (!file
->handle
) file
->handle
= GetStdHandle( STD_INPUT_HANDLE
);
236 file
= CRTDLL_stdout
;
237 if (!file
->handle
) file
->handle
= GetStdHandle( STD_OUTPUT_HANDLE
);
241 if (!file
->handle
) file
->handle
= GetStdHandle( STD_ERROR_HANDLE
);
244 file
= HeapAlloc( GetProcessHeap(), 0, sizeof(*file
) );
245 file
->handle
= handle
;
248 TRACE(crtdll
, "open handle %d mode %s got file %p\n",
254 /*******************************************************************
255 * _global_unwind2 (CRTDLL.129)
257 void __cdecl
CRTDLL__global_unwind2( PEXCEPTION_FRAME frame
)
259 RtlUnwind( frame
, 0, NULL
, 0 );
262 /*******************************************************************
263 * _local_unwind2 (CRTDLL.173)
265 void __cdecl
CRTDLL__local_unwind2( PEXCEPTION_FRAME endframe
, DWORD nr
)
267 TRACE(crtdll
,"(%p,%ld)\n",endframe
,nr
);
269 /*********************************************************************
275 INT __cdecl
CRTDLL__read(INT fd
, LPVOID buf
, UINT count
)
277 FIXME(crtdll
,":(%d,%p,%d): stub\n",fd
,buf
,count
);
278 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
282 /*********************************************************************
285 CRTDLL_FILE
* __cdecl
CRTDLL_fopen(LPCSTR path
, LPCSTR mode
)
287 CRTDLL_FILE
*file
= NULL
;
290 DOS_FULL_NAME full_name
;
292 if (!DOSFS_GetFullName( path
, FALSE
, &full_name
)) {
293 WARN(crtdll
, "file %s bad name\n",path
);
297 file
=fopen(full_name
.long_name
,mode
);
299 DWORD access
= 0, creation
= 0;
301 if ((strchr(mode
,'r')&&strchr(mode
,'a'))||
302 (strchr(mode
,'r')&&strchr(mode
,'w'))||
303 (strchr(mode
,'w')&&strchr(mode
,'a')))
308 access
= GENERIC_READ
;
309 creation
= OPEN_EXISTING
;
310 if (mode
[1] == '+') access
|= GENERIC_WRITE
;
312 else if (mode
[0] == 'w')
314 access
= GENERIC_WRITE
;
315 creation
= CREATE_ALWAYS
;
316 if (mode
[1] == '+') access
|= GENERIC_READ
;
318 else if (mode
[0] == 'a')
320 /* FIXME: there is no O_APPEND in CreateFile, should emulate it */
321 access
= GENERIC_WRITE
;
322 creation
= OPEN_ALWAYS
;
323 if (mode
[1] == '+') access
|= GENERIC_READ
;
325 /* FIXME: should handle text/binary mode */
327 if ((handle
= CreateFileA( path
, access
, FILE_SHARE_READ
| FILE_SHARE_WRITE
,
328 NULL
, creation
, FILE_ATTRIBUTE_NORMAL
,
329 -1 )) != INVALID_HANDLE_VALUE
)
331 file
= HeapAlloc( GetProcessHeap(), 0, sizeof(*file
) );
332 file
->handle
= handle
;
334 TRACE(crtdll
, "file %s mode %s got handle %d file %p\n",
335 path
,mode
,handle
,file
);
339 /*********************************************************************
342 DWORD __cdecl
CRTDLL_fread(LPVOID ptr
, INT size
, INT nmemb
, CRTDLL_FILE
*file
)
348 /* If we would honour CR/LF <-> LF translation, we could do it like this.
349 We should keep track of all files opened, and probably files with \
350 known binary extensions must be unchanged */
351 while ( (i
< (nmemb
*size
)) && (ret
==1)) {
352 ret
=fread(temp
,1,1,file
);
353 TRACE(crtdll
, "got %c 0x%02x ret %d\n",
354 (isalpha(*(unsigned char*)temp
))? *(unsigned char*)temp
:
355 ' ',*(unsigned char*)temp
, ret
);
356 if (*(unsigned char*)temp
!= 0xd) { /* skip CR */
361 TRACE(crtdll
, "skipping ^M\n");
363 TRACE(crtdll
, "0x%08x items of size %d from file %p to %p\n",
364 nmemb
,size
,file
,ptr
,);
366 WARN(crtdll
, " failed!\n");
372 TRACE(crtdll
, "0x%08x items of size %d from file %p to %p\n",
373 nmemb
,size
,file
,ptr
);
374 if (!ReadFile( file
->handle
, ptr
, size
* nmemb
, &ret
, NULL
))
375 WARN(crtdll
, " failed!\n");
380 /*********************************************************************
381 * freopen (CRTDLL.379)
386 DWORD __cdecl
CRTDLL_freopen(LPCSTR path
, LPCSTR mode
, LPVOID stream
)
388 FIXME(crtdll
, ":(%s,%s,%p): stub\n", path
, mode
, stream
);
389 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
393 /*********************************************************************
394 * fscanf (CRTDLL.381)
396 INT __cdecl
CRTDLL_fscanf( CRTDLL_FILE
*stream
, LPSTR format
, ... )
402 va_start( valist
, format
);
404 res
= vfscanf( xlat_file_ptr(stream
), format
, valist
);
409 FIXME(crtdll
,"broken\n");
413 /*********************************************************************
416 LONG __cdecl
CRTDLL_fseek( CRTDLL_FILE
*file
, LONG offset
, INT whence
)
418 TRACE(crtdll
, "file %p to 0x%08lx pos %s\n",
419 file
,offset
,(whence
==SEEK_SET
)?"SEEK_SET":
420 (whence
==SEEK_CUR
)?"SEEK_CUR":
421 (whence
==SEEK_END
)?"SEEK_END":"UNKNOWN");
422 if (SetFilePointer( file
->handle
, offset
, NULL
, whence
) != 0xffffffff)
424 WARN(crtdll
, " failed!\n");
428 /*********************************************************************
429 * fsetpos (CRTDLL.383)
431 INT __cdecl
CRTDLL_fsetpos( CRTDLL_FILE
*file
, INT
*pos
)
433 TRACE(crtdll
, "file %p pos %d\n", file
, *pos
);
434 return CRTDLL_fseek(file
, *pos
, SEEK_SET
);
437 /*********************************************************************
440 LONG __cdecl
CRTDLL_ftell( CRTDLL_FILE
*file
)
442 return SetFilePointer( file
->handle
, 0, NULL
, SEEK_CUR
);
445 /*********************************************************************
446 * fwrite (CRTDLL.386)
448 DWORD __cdecl
CRTDLL_fwrite( LPVOID ptr
, INT size
, INT nmemb
, CRTDLL_FILE
*file
)
452 TRACE(crtdll
, "0x%08x items of size %d to file %p from %p\n",
453 nmemb
,size
,file
,ptr
);
454 if (!WriteFile( file
->handle
, ptr
, size
* nmemb
, &ret
, NULL
))
455 WARN(crtdll
, " failed!\n");
459 /*********************************************************************
460 * setbuf (CRTDLL.452)
462 INT __cdecl
CRTDLL_setbuf(CRTDLL_FILE
*file
, LPSTR buf
)
464 TRACE(crtdll
, "(file %p buf %p)\n", file
, buf
);
465 /* this doesn't work:"void value not ignored as it ought to be"
466 return setbuf(file,buf);
468 /* FIXME: no buffering for now */
472 /*********************************************************************
473 * _open_osfhandle (CRTDLL.240)
475 HFILE __cdecl
CRTDLL__open_osfhandle(LONG osfhandle
, INT flags
)
480 case STD_INPUT_HANDLE
:
484 case STD_OUTPUT_HANDLE
:
488 case STD_ERROR_HANDLE
:
495 TRACE(crtdll
, "(handle %08lx,flags %d) return %d\n",
496 osfhandle
,flags
,handle
);
501 /*********************************************************************
504 void __cdecl
CRTDLL_srand(DWORD seed
)
506 /* FIXME: should of course be thread? process? local */
510 /*********************************************************************
511 * vfprintf (CRTDLL.373)
513 INT __cdecl
CRTDLL_vfprintf( CRTDLL_FILE
*file
, LPSTR format
, va_list args
)
515 char buffer
[1024]; /* FIXME... */
517 vsprintf( buffer
, format
, args
);
518 return CRTDLL_fwrite( buffer
, 1, strlen(buffer
), file
);
521 /*********************************************************************
522 * fprintf (CRTDLL.373)
524 INT __cdecl
CRTDLL_fprintf( CRTDLL_FILE
*file
, LPSTR format
, ... )
529 va_start( valist
, format
);
530 res
= CRTDLL_vfprintf( file
, format
, valist
);
535 /*********************************************************************
538 time_t __cdecl
CRTDLL_time(time_t *timeptr
)
540 time_t curtime
= time(NULL
);
547 /*********************************************************************
550 clock_t __cdecl
CRTDLL_clock(void)
556 res
= alltimes
.tms_utime
+ alltimes
.tms_stime
+
557 alltimes
.tms_cutime
+ alltimes
.tms_cstime
;
558 /* Fixme: We need some symbolic representation
559 for (Hostsystem_)CLOCKS_PER_SEC
560 and (Emulated_system_)CLOCKS_PER_SEC
561 10 holds only for Windows/Linux_i86)
566 /*********************************************************************
567 * _isatty (CRTDLL.137)
569 BOOL __cdecl
CRTDLL__isatty(DWORD x
)
571 TRACE(crtdll
,"(%ld)\n",x
);
575 /*********************************************************************
576 * _write (CRTDLL.332)
578 INT __cdecl
CRTDLL__write(INT fd
,LPCVOID buf
,UINT count
)
585 len
= (UINT
)write(fd
,buf
,(LONG
)count
);
587 len
= _lwrite(fd
,buf
,count
);
588 TRACE(crtdll
,"%d/%d byte to dfh %d from %p,\n",
594 /*********************************************************************
597 * FIXME: What the heck is the difference between
598 * FIXME _c_exit (CRTDLL.47)
599 * FIXME _cexit (CRTDLL.49)
600 * FIXME _exit (CRTDLL.87)
601 * FIXME exit (CRTDLL.359)
603 * atexit-processing comes to mind -- MW.
606 void __cdecl
CRTDLL__cexit(INT ret
)
608 TRACE(crtdll
,"(%d)\n",ret
);
613 /*********************************************************************
616 void __cdecl
CRTDLL_exit(DWORD ret
)
618 TRACE(crtdll
,"(%ld)\n",ret
);
623 /*********************************************************************
624 * _abnormal_termination (CRTDLL.36)
626 INT __cdecl
CRTDLL__abnormal_termination(void)
628 TRACE(crtdll
,"(void)\n");
633 /*********************************************************************
634 * _access (CRTDLL.37)
636 INT __cdecl
CRTDLL__access(LPCSTR filename
, INT mode
)
638 DWORD attr
= GetFileAttributesA(filename
);
642 if (GetLastError() == ERROR_INVALID_ACCESS
)
649 if ((attr
& FILE_ATTRIBUTE_READONLY
) && (mode
& W_OK
))
659 /*********************************************************************
660 * fflush (CRTDLL.365)
662 INT __cdecl
CRTDLL_fflush( CRTDLL_FILE
*file
)
664 return FlushFileBuffers( file
->handle
) ? 0 : -1;
668 /*********************************************************************
671 INT __cdecl
CRTDLL_rand()
677 /*********************************************************************
678 * putchar (CRTDLL.442)
680 void __cdecl
CRTDLL_putchar( INT x
)
686 /*********************************************************************
689 INT __cdecl
CRTDLL_fputc( INT c
, CRTDLL_FILE
*file
)
693 TRACE(crtdll
, "%c to file %p\n",c
,file
);
694 if (!WriteFile( file
->handle
, &ch
, 1, &res
, NULL
)) return -1;
699 /*********************************************************************
702 INT __cdecl
CRTDLL_fputs( LPCSTR s
, CRTDLL_FILE
*file
)
705 TRACE(crtdll
, "%s to file %p\n",s
,file
);
706 if (!WriteFile( file
->handle
, s
, strlen(s
), &res
, NULL
)) return -1;
711 /*********************************************************************
714 INT __cdecl
CRTDLL_puts(LPCSTR s
)
716 TRACE(crtdll
, "%s \n",s
);
721 /*********************************************************************
724 INT __cdecl
CRTDLL_putc( INT c
, CRTDLL_FILE
*file
)
726 return CRTDLL_fputc( c
, file
);
729 /*********************************************************************
732 INT __cdecl
CRTDLL_fgetc( CRTDLL_FILE
*file
)
736 if (!ReadFile( file
->handle
, &ch
, 1, &res
, NULL
)) return -1;
741 /*********************************************************************
744 INT __cdecl
CRTDLL_getc( CRTDLL_FILE
*file
)
746 return CRTDLL_fgetc( file
);
750 /*********************************************************************
753 CHAR
* __cdecl
CRTDLL_fgets( LPSTR s
, INT size
, CRTDLL_FILE
*file
)
758 /* BAD, for the whole WINE process blocks... just done this way to test
759 * windows95's ftp.exe.
762 for(cc
= CRTDLL_fgetc(file
); cc
!= EOF
&& cc
!= '\n'; cc
= CRTDLL_fgetc(file
))
765 if (--size
<= 0) break;
771 TRACE(crtdll
,"got '%s'\n", buf_start
);
776 /*********************************************************************
779 LPSTR __cdecl
CRTDLL_gets(LPSTR buf
)
782 LPSTR buf_start
= buf
;
784 /* BAD, for the whole WINE process blocks... just done this way to test
785 * windows95's ftp.exe.
788 for(cc
= fgetc(stdin
); cc
!= EOF
&& cc
!= '\n'; cc
= fgetc(stdin
))
789 if(cc
!= '\r') *buf
++ = (char)cc
;
793 TRACE(crtdll
,"got '%s'\n", buf_start
);
798 /*********************************************************************
801 UINT __cdecl
CRTDLL__rotl(UINT x
,INT shift
)
803 unsigned int ret
= (x
>> shift
)|( x
>>((sizeof(x
))-shift
));
805 TRACE(crtdll
, "got 0x%08x rot %d ret 0x%08x\n",
810 /*********************************************************************
811 * _lrotl (CRTDLL.176)
813 DWORD __cdecl
CRTDLL__lrotl(DWORD x
,INT shift
)
815 unsigned long ret
= (x
>> shift
)|( x
>>((sizeof(x
))-shift
));
817 TRACE(crtdll
, "got 0x%08lx rot %d ret 0x%08lx\n",
824 /*********************************************************************
825 * _mbsicmp (CRTDLL.204)
827 int __cdecl
CRTDLL__mbsicmp(unsigned char *x
,unsigned char *y
)
834 /* FIXME: MBCS handling... */
843 /*********************************************************************
844 * _mbsinc (CRTDLL.205)
846 unsigned char * __cdecl
CRTDLL__mbsinc(unsigned char *x
)
853 /*********************************************************************
854 * vsprintf (CRTDLL.500)
856 INT __cdecl
CRTDLL_vsprintf( LPSTR buffer
, LPCSTR spec
, va_list args
)
858 return wvsprintfA( buffer
, spec
, args
);
861 /*********************************************************************
862 * vswprintf (CRTDLL.501)
864 INT __cdecl
CRTDLL_vswprintf( LPWSTR buffer
, LPCWSTR spec
, va_list args
)
866 return wvsprintfW( buffer
, spec
, args
);
869 /*********************************************************************
870 * _mbscpy (CRTDLL.200)
872 unsigned char* __cdecl
CRTDLL__mbscpy(unsigned char *x
,unsigned char *y
)
874 TRACE(crtdll
,"CRTDLL_mbscpy %s and %s\n",x
,y
);
879 /*********************************************************************
880 * _mbscat (CRTDLL.197)
882 unsigned char* __cdecl
CRTDLL__mbscat(unsigned char *x
,unsigned char *y
)
888 /*********************************************************************
889 * _strcmpi (CRTDLL.282) (CRTDLL.287)
891 INT __cdecl
CRTDLL__strcmpi( LPCSTR s1
, LPCSTR s2
)
893 return lstrcmpiA( s1
, s2
);
897 /*********************************************************************
898 * _strnicmp (CRTDLL.293)
900 INT __cdecl
CRTDLL__strnicmp( LPCSTR s1
, LPCSTR s2
, INT n
)
902 return lstrncmpiA( s1
, s2
, n
);
906 /*********************************************************************
907 * _strlwr (CRTDLL.293)
909 * convert a string in place to lowercase
911 LPSTR __cdecl
CRTDLL__strlwr(LPSTR x
)
915 TRACE(crtdll
, "CRTDLL_strlwr got %s\n", x
);
917 if ((*y
> 0x40) && (*y
< 0x5b))
921 TRACE(crtdll
, " returned %s\n", x
);
926 /*********************************************************************
927 * system (CRTDLL.485)
929 INT __cdecl
CRTDLL_system(LPSTR x
)
931 #define SYSBUF_LENGTH 1500
932 char buffer
[SYSBUF_LENGTH
];
933 unsigned char *y
= x
;
937 sprintf( buffer
, "%s \"", Options
.argv0
);
938 bp
= buffer
+ strlen(buffer
);
939 i
= strlen(buffer
) + strlen(x
) +2;
941 /* Calculate needed buffer size to prevent overflow. */
946 /* If buffer too short, exit. */
947 if (i
> SYSBUF_LENGTH
) {
948 TRACE(crtdll
,"_system buffer to small\n");
957 if (*(y
-1) =='\\') *bp
++ = '\\';
959 /* Remove spaces from end of string. */
960 while (*(y
-1) == ' ') {
965 TRACE(crtdll
, "_system got '%s', executing '%s'\n",x
,buffer
);
967 return system(buffer
);
970 /*********************************************************************
971 * _strupr (CRTDLL.300)
973 LPSTR __cdecl
CRTDLL__strupr(LPSTR x
)
984 /*********************************************************************
985 * _wcsupr (CRTDLL.328)
987 LPWSTR __cdecl
CRTDLL__wcsupr(LPWSTR x
)
998 /*********************************************************************
999 * _wcslwr (CRTDLL.323)
1001 LPWSTR __cdecl
CRTDLL__wcslwr(LPWSTR x
)
1013 /*********************************************************************
1014 * longjmp (CRTDLL.426)
1016 VOID __cdecl
CRTDLL_longjmp(jmp_buf env
, int val
)
1018 FIXME(crtdll
,"CRTDLL_longjmp semistup, expect crash\n");
1019 return longjmp(env
, val
);
1022 /*********************************************************************
1023 * malloc (CRTDLL.427)
1025 VOID
* __cdecl
CRTDLL_malloc(DWORD size
)
1027 return HeapAlloc(GetProcessHeap(),0,size
);
1030 /*********************************************************************
1033 VOID
* __cdecl
CRTDLL_new(DWORD size
)
1036 if(!(result
= HeapAlloc(GetProcessHeap(),0,size
)) && new_handler
)
1041 /*********************************************************************
1042 * set_new_handler(CRTDLL.003)
1044 new_handler_type __cdecl
CRTDLL_set_new_handler(new_handler_type func
)
1046 new_handler_type old_handler
= new_handler
;
1051 /*********************************************************************
1052 * calloc (CRTDLL.350)
1054 VOID
* __cdecl
CRTDLL_calloc(DWORD size
, DWORD count
)
1056 return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, size
* count
);
1059 /*********************************************************************
1060 * realloc (CRTDLL.447)
1062 VOID
* __cdecl
CRTDLL_realloc( VOID
*ptr
, DWORD size
)
1064 return HeapReAlloc( GetProcessHeap(), 0, ptr
, size
);
1067 /*********************************************************************
1070 VOID __cdecl
CRTDLL_free(LPVOID ptr
)
1072 HeapFree(GetProcessHeap(),0,ptr
);
1075 /*********************************************************************
1076 * delete (CRTDLL.002)
1078 VOID __cdecl
CRTDLL_delete(VOID
* ptr
)
1080 HeapFree(GetProcessHeap(),0,ptr
);
1083 /*********************************************************************
1084 * _strdup (CRTDLL.285)
1086 LPSTR __cdecl
CRTDLL__strdup(LPCSTR ptr
)
1088 return HEAP_strdupA(GetProcessHeap(),0,ptr
);
1091 /*********************************************************************
1092 * _wcsdup (CRTDLL.320)
1094 LPWSTR __cdecl
CRTDLL__wcsdup(LPCWSTR ptr
)
1096 return HEAP_strdupW(GetProcessHeap(),0,ptr
);
1099 /*********************************************************************
1100 * fclose (CRTDLL.362)
1102 INT __cdecl
CRTDLL_fclose( CRTDLL_FILE
*file
)
1104 TRACE(crtdll
,"%p\n", file
);
1105 if (!CloseHandle( file
->handle
)) return -1;
1106 HeapFree( GetProcessHeap(), 0, file
);
1110 /*********************************************************************
1111 * _unlink (CRTDLL.315)
1113 INT __cdecl
CRTDLL__unlink(LPCSTR pathname
)
1116 DOS_FULL_NAME full_name
;
1118 if (!DOSFS_GetFullName( pathname
, FALSE
, &full_name
)) {
1119 WARN(crtdll
, "CRTDLL_unlink file %s bad name\n",pathname
);
1123 ret
=unlink(full_name
.long_name
);
1124 TRACE(crtdll
,"(%s unix %s)\n",
1125 pathname
,full_name
.long_name
);
1127 WARN(crtdll
, " Failed!\n");
1132 /*********************************************************************
1133 * rename (CRTDLL.449)
1135 INT __cdecl
CRTDLL_rename(LPCSTR oldpath
,LPCSTR newpath
)
1137 BOOL ok
= MoveFileExA( oldpath
, newpath
, MOVEFILE_REPLACE_EXISTING
);
1142 /*********************************************************************
1143 * _stat (CRTDLL.280)
1161 int __cdecl
CRTDLL__stat(const char * filename
, struct win_stat
* buf
)
1164 DOS_FULL_NAME full_name
;
1167 if (!DOSFS_GetFullName( filename
, TRUE
, &full_name
))
1169 WARN(crtdll
, "CRTDLL__stat filename %s bad name\n",filename
);
1172 ret
=stat(full_name
.long_name
,&mystat
);
1173 TRACE(crtdll
,"CRTDLL__stat %s\n", filename
);
1175 WARN(crtdll
, " Failed!\n");
1177 /* FIXME: should check what Windows returns */
1179 buf
->win_st_dev
= mystat
.st_dev
;
1180 buf
->win_st_ino
= mystat
.st_ino
;
1181 buf
->win_st_mode
= mystat
.st_mode
;
1182 buf
->win_st_nlink
= mystat
.st_nlink
;
1183 buf
->win_st_uid
= mystat
.st_uid
;
1184 buf
->win_st_gid
= mystat
.st_gid
;
1185 buf
->win_st_rdev
= mystat
.st_rdev
;
1186 buf
->win_st_size
= mystat
.st_size
;
1187 buf
->win_st_atime
= mystat
.st_atime
;
1188 buf
->win_st_mtime
= mystat
.st_mtime
;
1189 buf
->win_st_ctime
= mystat
.st_ctime
;
1193 /*********************************************************************
1194 * _open (CRTDLL.239)
1196 HFILE __cdecl
CRTDLL__open(LPCSTR path
,INT flags
)
1198 DWORD access
= 0, creation
= 0;
1202 the flags in lcc's header differ from the ones in Linux, e.g.
1203 Linux: define O_APPEND 02000 (= 0x400)
1204 lcc: define _O_APPEND 0x0008
1205 so here a scheme to translate them
1206 Probably lcc is wrong here, but at least a hack to get is going
1210 case O_RDONLY
: access
|= GENERIC_READ
; break;
1211 case O_WRONLY
: access
|= GENERIC_WRITE
; break;
1212 case O_RDWR
: access
|= GENERIC_WRITE
| GENERIC_READ
; break;
1215 if (flags
& 0x0100) /* O_CREAT */
1217 if (flags
& 0x0400) /* O_EXCL */
1218 creation
= CREATE_NEW
;
1219 else if (flags
& 0x0200) /* O_TRUNC */
1220 creation
= CREATE_ALWAYS
;
1222 creation
= OPEN_ALWAYS
;
1224 else /* no O_CREAT */
1226 if (flags
& 0x0200) /* O_TRUNC */
1227 creation
= TRUNCATE_EXISTING
;
1229 creation
= OPEN_EXISTING
;
1231 if (flags
& 0x0008) /* O_APPEND */
1232 FIXME(crtdll
, "O_APPEND not supported\n" );
1234 TRACE(crtdll
,"CRTDLL_open file unsupported flags 0x%04x\n",flags
);
1237 ret
= CreateFileA( path
, access
, FILE_SHARE_READ
| FILE_SHARE_WRITE
,
1238 NULL
, creation
, FILE_ATTRIBUTE_NORMAL
, -1 );
1239 TRACE(crtdll
,"CRTDLL_open file %s mode 0x%04x got handle %d\n", path
,flags
,ret
);
1243 /*********************************************************************
1244 * _close (CRTDLL.57)
1246 INT __cdecl
CRTDLL__close(HFILE fd
)
1248 int ret
=_lclose(fd
);
1250 TRACE(crtdll
,"(%d)\n",fd
);
1252 WARN(crtdll
, " Failed!\n");
1257 /*********************************************************************
1260 INT __cdecl
CRTDLL_feof( CRTDLL_FILE
*file
)
1262 FIXME(crtdll
,"stub\n" );
1266 /*********************************************************************
1267 * setlocale (CRTDLL.453)
1269 LPSTR __cdecl
CRTDLL_setlocale(INT category
,LPCSTR locale
)
1274 case CRTDLL_LC_ALL
: categorystr
="LC_ALL";break;
1275 case CRTDLL_LC_COLLATE
: categorystr
="LC_COLLATE";break;
1276 case CRTDLL_LC_CTYPE
: categorystr
="LC_CTYPE";break;
1277 case CRTDLL_LC_MONETARY
: categorystr
="LC_MONETARY";break;
1278 case CRTDLL_LC_NUMERIC
: categorystr
="LC_NUMERIC";break;
1279 case CRTDLL_LC_TIME
: categorystr
="LC_TIME";break;
1280 default: categorystr
= "UNKNOWN?";break;
1282 FIXME(crtdll
,"(%s,%s),stub!\n",categorystr
,locale
);
1286 /*********************************************************************
1287 * wcscat (CRTDLL.503)
1289 LPWSTR __cdecl
CRTDLL_wcscat( LPWSTR s1
, LPCWSTR s2
)
1291 return lstrcatW( s1
, s2
);
1294 /*********************************************************************
1295 * wcschr (CRTDLL.504)
1297 LPWSTR __cdecl
CRTDLL_wcschr(LPCWSTR str
,WCHAR xchar
)
1309 /*********************************************************************
1310 * wcscmp (CRTDLL.505)
1312 INT __cdecl
CRTDLL_wcscmp( LPCWSTR s1
, LPCWSTR s2
)
1314 return lstrcmpW( s1
, s2
);
1317 /*********************************************************************
1318 * wcscpy (CRTDLL.507)
1320 LPWSTR __cdecl
CRTDLL_wcscpy( LPWSTR s1
, LPCWSTR s2
)
1322 return lstrcpyW( s1
, s2
);
1325 /*********************************************************************
1326 * wcscspn (CRTDLL.508)
1328 INT __cdecl
CRTDLL_wcscspn(LPWSTR str
,LPWSTR reject
)
1335 while (*t
) { if (*t
==*s
) break;t
++;}
1339 return s
-str
; /* nr of wchars */
1342 /*********************************************************************
1343 * wcslen (CRTDLL.510)
1345 INT __cdecl
CRTDLL_wcslen( LPCWSTR s
)
1347 return lstrlenW( s
);
1350 /*********************************************************************
1351 * wcsncat (CRTDLL.511)
1353 LPWSTR __cdecl
CRTDLL_wcsncat( LPWSTR s1
, LPCWSTR s2
, INT n
)
1355 return lstrcatnW( s1
, s2
, n
);
1358 /*********************************************************************
1359 * wcsncmp (CRTDLL.512)
1361 INT __cdecl
CRTDLL_wcsncmp( LPCWSTR s1
, LPCWSTR s2
, INT n
)
1363 return lstrncmpW( s1
, s2
, n
);
1366 /*********************************************************************
1367 * wcsncpy (CRTDLL.513)
1369 LPWSTR __cdecl
CRTDLL_wcsncpy( LPWSTR s1
, LPCWSTR s2
, INT n
)
1371 return lstrcpynW( s1
, s2
, n
);
1374 /*********************************************************************
1375 * wcsspn (CRTDLL.516)
1377 INT __cdecl
CRTDLL_wcsspn(LPWSTR str
,LPWSTR accept
)
1384 while (*t
) { if (*t
==*s
) break;t
++;}
1388 return s
-str
; /* nr of wchars */
1391 /*********************************************************************
1392 * _wcsicmp (CRTDLL.321)
1394 DWORD __cdecl
CRTDLL__wcsicmp( LPCWSTR s1
, LPCWSTR s2
)
1396 return lstrcmpiW( s1
, s2
);
1399 /*********************************************************************
1400 * _wcsicoll (CRTDLL.322)
1402 DWORD __cdecl
CRTDLL__wcsicoll(LPCWSTR a1
,LPCWSTR a2
)
1404 /* FIXME: handle collates */
1405 return lstrcmpiW(a1
,a2
);
1408 /*********************************************************************
1409 * _wcsnicmp (CRTDLL.324)
1411 DWORD __cdecl
CRTDLL__wcsnicmp( LPCWSTR s1
, LPCWSTR s2
, INT len
)
1413 return lstrncmpiW( s1
, s2
, len
);
1416 /*********************************************************************
1417 * wcscoll (CRTDLL.506)
1419 DWORD __cdecl
CRTDLL_wcscoll(LPWSTR a1
,LPWSTR a2
)
1421 /* FIXME: handle collates */
1422 return lstrcmpW(a1
,a2
);
1425 /*********************************************************************
1426 * _wcsrev (CRTDLL.326)
1428 VOID __cdecl
CRTDLL__wcsrev(LPWSTR s
) {
1442 /*********************************************************************
1443 * wcsstr (CRTDLL.517)
1445 LPWSTR __cdecl
CRTDLL_wcsstr(LPWSTR s
,LPWSTR b
)
1453 while (*y
&& *c
&& *y
==*c
) { c
++;y
++; }
1462 /*********************************************************************
1463 * wcstombs (CRTDLL.521)
1465 INT __cdecl
CRTDLL_wcstombs( LPSTR dst
, LPCWSTR src
, INT len
)
1467 lstrcpynWtoA( dst
, src
, len
);
1468 return strlen(dst
); /* FIXME: is this right? */
1471 /*********************************************************************
1472 * wcsrchr (CRTDLL.515)
1474 LPWSTR __cdecl
CRTDLL_wcsrchr(LPWSTR str
,WCHAR xchar
)
1478 s
=str
+lstrlenW(str
);
1487 /*********************************************************************
1488 * _setmode (CRTDLL.265)
1489 * FIXME: At present we ignore the request to translate CR/LF to LF.
1491 * We allways translate when we read with fgets, we never do with fread
1494 INT __cdecl
CRTDLL__setmode( INT fh
,INT mode
)
1497 #define O_TEXT 0x4000
1498 #define O_BINARY 0x8000
1500 FIXME(crtdll
, "on fhandle %d mode %s, STUB.\n",
1501 fh
,(mode
=O_TEXT
)?"O_TEXT":
1502 (mode
=O_BINARY
)?"O_BINARY":"UNKNOWN");
1506 /*********************************************************************
1507 * _fpreset (CRTDLL.107)
1509 VOID __cdecl
CRTDLL__fpreset(void)
1511 FIXME(crtdll
," STUB.\n");
1514 /*********************************************************************
1515 * atexit (CRTDLL.345)
1517 INT __cdecl
CRTDLL_atexit(LPVOID x
)
1519 FIXME(crtdll
,"(%p), STUB.\n",x
);
1520 return 0; /* successful */
1523 /*********************************************************************
1524 * mblen (CRTDLL.428)
1525 * FIXME: check multibyte support
1527 WCHAR __cdecl
CRTDLL_mblen(CHAR
*mb
,INT size
)
1534 else if ((size
<1)||(!*(mb
+1)))
1539 TRACE(crtdll
,"CRTDLL_mlen %s for max %d bytes ret %d\n",mb
,size
,ret
);
1544 /*********************************************************************
1545 * mbstowcs (CRTDLL.429)
1546 * FIXME: check multibyte support
1548 INT __cdecl
CRTDLL_mbstowcs(LPWSTR wcs
, LPCSTR mbs
, INT size
)
1551 /* Slightly modified lstrcpynAtoW functions from memory/strings.c
1552 * We need the number of characters transfered
1553 * FIXME: No multibyte support yet
1560 while ((n
-- > 0) && *src
) {
1561 *p
++ = (WCHAR
)(unsigned char)*src
++;
1566 TRACE(crtdll
,"CRTDLL_mbstowcs %s for %d chars put %d wchars\n",
1571 /*********************************************************************
1572 * mbtowc (CRTDLL.430)
1573 * FIXME: check multibyte support
1575 WCHAR __cdecl
CRTDLL_mbtowc(WCHAR
* wc
,CHAR
* mb
,INT size
)
1584 if ( (ret
= mblen(mb
,size
)) != -1 )
1586 if (ret
<= sizeof(char))
1587 *wc
= (WCHAR
) ((unsigned char)*mb
);
1594 TRACE(crtdll
,"CRTDLL_mbtowc %s for %d chars\n",mb
,size
);
1599 /*********************************************************************
1600 * _isctype (CRTDLL.138)
1602 BOOL __cdecl
CRTDLL__isctype(CHAR x
,CHAR type
)
1604 if ((type
& CRTDLL_SPACE
) && isspace(x
))
1606 if ((type
& CRTDLL_PUNCT
) && ispunct(x
))
1608 if ((type
& CRTDLL_LOWER
) && islower(x
))
1610 if ((type
& CRTDLL_UPPER
) && isupper(x
))
1612 if ((type
& CRTDLL_ALPHA
) && isalpha(x
))
1614 if ((type
& CRTDLL_DIGIT
) && isdigit(x
))
1616 if ((type
& CRTDLL_CONTROL
) && iscntrl(x
))
1618 /* check CRTDLL_LEADBYTE */
1622 /*********************************************************************
1623 * _chdrive (CRTDLL.52)
1625 * newdir [I] drive to change to, A=1
1628 BOOL __cdecl
CRTDLL__chdrive(INT newdrive
)
1630 /* FIXME: generates errnos */
1631 return DRIVE_SetCurrentDrive(newdrive
-1);
1634 /*********************************************************************
1635 * _chdir (CRTDLL.51)
1637 INT __cdecl
CRTDLL__chdir(LPCSTR newdir
)
1639 if (!SetCurrentDirectoryA(newdir
))
1644 /*********************************************************************
1645 * _fullpath (CRTDLL.114)
1647 LPSTR __cdecl
CRTDLL__fullpath(LPSTR buf
, LPCSTR name
, INT size
)
1649 DOS_FULL_NAME full_name
;
1654 if(!(buf
= CRTDLL_malloc(size
))) return NULL
;
1656 if (!DOSFS_GetFullName( name
, FALSE
, &full_name
)) return NULL
;
1657 lstrcpynA(buf
,full_name
.short_name
,size
);
1658 TRACE(crtdll
,"CRTDLL_fullpath got %s\n",buf
);
1662 /*********************************************************************
1663 * _splitpath (CRTDLL.279)
1665 VOID __cdecl
CRTDLL__splitpath(LPCSTR path
, LPSTR drive
, LPSTR directory
, LPSTR filename
, LPSTR extension
)
1668 directory includes leading and trailing (forward and backward slashes)
1669 filename without dot and slashes
1670 extension with leading dot
1672 char * drivechar
,*dirchar
,*namechar
;
1674 TRACE(crtdll
,"CRTDLL__splitpath got %s\n",path
);
1676 drivechar
= strchr(path
,':');
1677 dirchar
= strrchr(path
,'/');
1678 namechar
= strrchr(path
,'\\');
1679 dirchar
= MAX(dirchar
,namechar
);
1681 namechar
= strrchr(dirchar
,'.');
1683 namechar
= strrchr(path
,'.');
1691 strncat(drive
,path
,drivechar
-path
+1);
1700 strncat(directory
,path
,dirchar
-path
+1);
1709 strncat(filename
,path
,namechar
-path
);
1713 strcat(extension
,namechar
);
1718 TRACE(crtdll
,"CRTDLL__splitpath found %s %s %s %s\n",drive
,directory
,filename
,extension
);
1722 /*********************************************************************
1723 * _getcwd (CRTDLL.120)
1725 CHAR
* __cdecl
CRTDLL__getcwd(LPSTR buf
, INT size
)
1732 if (size
< 0) /* allocate as big as nescessary */
1733 len
=GetCurrentDirectoryA(1,test
) + 1;
1734 if(!(buf
= CRTDLL_malloc(len
)))
1736 /* set error to OutOfRange */
1741 if(!(len
=GetCurrentDirectoryA(len
,buf
)))
1747 /* set error to ERANGE */
1748 TRACE(crtdll
,"CRTDLL_getcwd buffer to small\n");
1755 /*********************************************************************
1756 * _getdcwd (CRTDLL.121)
1758 CHAR
* __cdecl
CRTDLL__getdcwd(INT drive
,LPSTR buf
, INT size
)
1763 FIXME(crtdll
,"(\"%c:\",%s,%d)\n",drive
+'A',buf
,size
);
1766 if (size
< 0) /* allocate as big as nescessary */
1767 len
=GetCurrentDirectoryA(1,test
) + 1;
1768 if(!(buf
= CRTDLL_malloc(len
)))
1770 /* set error to OutOfRange */
1775 if(!(len
=GetCurrentDirectoryA(len
,buf
)))
1781 /* set error to ERANGE */
1782 TRACE(crtdll
,"buffer to small\n");
1789 /*********************************************************************
1790 * _getdrive (CRTDLL.124)
1792 * Return current drive, 1 for A, 2 for B
1794 INT __cdecl
CRTDLL__getdrive(VOID
)
1796 return DRIVE_GetCurrentDrive() + 1;
1799 /*********************************************************************
1800 * _mkdir (CRTDLL.234)
1802 INT __cdecl
CRTDLL__mkdir(LPCSTR newdir
)
1804 if (!CreateDirectoryA(newdir
,NULL
))
1809 /*********************************************************************
1810 * remove (CRTDLL.448)
1812 INT __cdecl
CRTDLL_remove(LPCSTR file
)
1814 if (!DeleteFileA(file
))
1819 /*********************************************************************
1820 * _errno (CRTDLL.52)
1821 * Yes, this is a function.
1823 LPINT __cdecl
CRTDLL__errno()
1825 static int crtdllerrno
;
1827 /* FIXME: we should set the error at the failing function call time */
1828 crtdllerrno
= LastErrorToErrno(GetLastError());
1829 return &crtdllerrno
;
1832 /*********************************************************************
1833 * _tempnam (CRTDLL.305)
1836 LPSTR __cdecl
CRTDLL__tempnam(LPCSTR dir
, LPCSTR prefix
)
1840 DOS_FULL_NAME tempname
;
1842 if ((ret
= tempnam(dir
,prefix
))==NULL
) {
1843 WARN(crtdll
, "Unable to get unique filename\n");
1846 if (!DOSFS_GetFullName(ret
,FALSE
,&tempname
))
1848 TRACE(crtdll
, "Wrong path?\n");
1852 if ((ret
= CRTDLL_malloc(strlen(tempname
.short_name
)+1)) == NULL
) {
1853 WARN(crtdll
, "CRTDL_malloc for shortname failed\n");
1856 if ((ret
= strcpy(ret
,tempname
.short_name
)) == NULL
) {
1857 WARN(crtdll
, "Malloc for shortname failed\n");
1861 TRACE(crtdll
,"dir %s prefix %s got %s\n",
1866 /*********************************************************************
1867 * tmpnam (CRTDLL.490)
1869 * lcclnk from lcc-win32 relies on a terminating dot in the name returned
1872 LPSTR __cdecl
CRTDLL_tmpnam(LPSTR s
)
1876 if ((ret
=tmpnam(s
))== NULL
) {
1877 WARN(crtdll
, "Unable to get unique filename\n");
1880 if (!DOSFS_GetFullName(ret
,FALSE
,&CRTDLL_tmpname
))
1882 TRACE(crtdll
, "Wrong path?\n");
1885 strcat(CRTDLL_tmpname
.short_name
,".");
1886 TRACE(crtdll
,"for buf %p got %s\n",
1887 s
,CRTDLL_tmpname
.short_name
);
1888 TRACE(crtdll
,"long got %s\n",
1889 CRTDLL_tmpname
.long_name
);
1891 return strcpy(s
,CRTDLL_tmpname
.short_name
);
1893 return CRTDLL_tmpname
.short_name
;
1897 /*********************************************************************
1898 * _itoa (CRTDLL.165)
1900 LPSTR __cdecl
CRTDLL__itoa(INT x
,LPSTR buf
,INT buflen
)
1902 wsnprintfA(buf
,buflen
,"%d",x
);
1906 /*********************************************************************
1907 * _ltoa (CRTDLL.180)
1909 LPSTR __cdecl
CRTDLL__ltoa(long x
,LPSTR buf
,INT radix
)
1912 case 2: FIXME(crtdll
, "binary format not implemented !\n");
1914 case 8: wsnprintfA(buf
,0x80,"%o",x
);
1916 case 10: wsnprintfA(buf
,0x80,"%d",x
);
1918 case 16: wsnprintfA(buf
,0x80,"%x",x
);
1920 default: FIXME(crtdll
, "radix %d not implemented !\n", radix
);
1925 /*********************************************************************
1926 * _ultoa (CRTDLL.311)
1928 LPSTR __cdecl
CRTDLL__ultoa(long x
,LPSTR buf
,INT radix
)
1931 case 2: FIXME(crtdll
, "binary format not implemented !\n");
1933 case 8: wsnprintfA(buf
,0x80,"%lo",x
);
1935 case 10: wsnprintfA(buf
,0x80,"%ld",x
);
1937 case 16: wsnprintfA(buf
,0x80,"%lx",x
);
1939 default: FIXME(crtdll
, "radix %d not implemented !\n", radix
);
1944 typedef VOID (*sig_handler_type
)(VOID
);
1946 /*********************************************************************
1947 * signal (CRTDLL.455)
1949 VOID __cdecl
CRTDLL_signal(int sig
, sig_handler_type ptr
)
1951 FIXME(crtdll
, "(%d %p):stub.\n", sig
, ptr
);
1954 /*********************************************************************
1955 * _ftol (CRTDLL.113)
1957 LONG __cdecl
CRTDLL__ftol(double fl
) {
1960 /*********************************************************************
1961 * _sleep (CRTDLL.267)
1963 VOID __cdecl
CRTDLL__sleep(unsigned long timeout
)
1965 TRACE(crtdll
,"CRTDLL__sleep for %ld milliseconds\n",timeout
);
1966 Sleep((timeout
)?timeout
:1);
1969 /*********************************************************************
1970 * getenv (CRTDLL.437)
1972 LPSTR __cdecl
CRTDLL_getenv(const char *name
)
1974 LPSTR environ
= GetEnvironmentStringsA();
1975 LPSTR pp
,pos
= NULL
;
1976 unsigned int length
;
1978 for (pp
= environ
; (*pp
); pp
= pp
+ strlen(pp
) +1)
1980 pos
=strchr(pp
,'=');
1984 length
= strlen(pp
);
1985 if (!strncmp(pp
,name
,length
)) break;
1990 TRACE(crtdll
,"got %s\n",pp
);
1992 FreeEnvironmentStringsA( environ
);
1996 /*********************************************************************
1997 * _mbsrchr (CRTDLL.223)
1999 LPSTR __cdecl
CRTDLL__mbsrchr(LPSTR s
,CHAR x
) {
2000 /* FIXME: handle multibyte strings */
2001 return strrchr(s
,x
);
2004 /*********************************************************************
2005 * _memicmp (CRTDLL.233)(NTDLL.868)
2006 * A stringcompare, without \0 check
2008 * -1:if first string is alphabetically before second string
2009 * 1:if second '' '' '' '' first ''
2010 * 0:if both are equal.
2012 INT __cdecl
CRTDLL__memicmp(
2013 LPCSTR s1
, /* [in] first string */
2014 LPCSTR s2
, /* [in] second string */
2015 DWORD len
/* [in] length to compare */
2019 for (i
=0;i
<len
;i
++) {
2020 if (tolower(s1
[i
])<tolower(s2
[i
]))
2022 if (tolower(s1
[i
])>tolower(s2
[i
]))
2027 /*********************************************************************
2028 * __dllonexit (CRTDLL.25)
2030 VOID __cdecl
CRTDLL__dllonexit ()
2032 FIXME(crtdll
,"stub\n");
2035 /*********************************************************************
2036 * wcstok (CRTDLL.519)
2037 * Like strtok, but for wide character strings. s is modified, yes.
2039 LPWSTR
CRTDLL_wcstok(LPWSTR s
,LPCWSTR delim
) {
2040 static LPWSTR nexttok
= NULL
;
2048 while (*x
&& !CRTDLL_wcschr(delim
,*x
))
2059 /*********************************************************************
2060 * wcstol (CRTDLL.520)
2061 * Like strtol, but for wide character strings.
2063 INT
CRTDLL_wcstol(LPWSTR s
,LPWSTR
*end
,INT base
) {
2064 LPSTR sA
= HEAP_strdupWtoA(GetProcessHeap(),0,s
),endA
;
2065 INT ret
= strtol(sA
,&endA
,base
);
2067 HeapFree(GetProcessHeap(),0,sA
);
2068 if (end
) *end
= s
+(endA
-sA
); /* pointer magic checked. */
2071 /*********************************************************************
2072 * strdate (CRTDLL.283)
2074 LPSTR __cdecl
CRTDLL__strdate (LPSTR date
)
2075 { FIXME (crtdll
,"%p stub\n", date
);
2079 /*********************************************************************
2080 * strtime (CRTDLL.299)
2082 LPSTR __cdecl
CRTDLL__strtime (LPSTR date
)
2083 { FIXME (crtdll
,"%p stub\n", date
);