wined3d: CMP supports _SAT.
[wine] / dlls / msvcrt / file.c
1 /*
2  * msvcrt.dll file functions
3  *
4  * Copyright 1996,1998 Marcus Meissner
5  * Copyright 1996 Jukka Iivonen
6  * Copyright 1997,2000 Uwe Bonnes
7  * Copyright 2000 Jon Griffiths
8  * Copyright 2004 Eric Pouech
9  * Copyright 2004 Juan Lang
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public
13  * License as published by the Free Software Foundation; either
14  * version 2.1 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with this library; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24  *
25  * TODO
26  * Use the file flag hints O_SEQUENTIAL, O_RANDOM, O_SHORT_LIVED
27  */
28
29 #include "config.h"
30 #include "wine/port.h"
31
32 #include <time.h>
33 #include <stdarg.h>
34 #include <stdio.h>
35 #ifdef HAVE_UNISTD_H
36 # include <unistd.h>
37 #endif
38 #include <sys/types.h>
39
40 #include "windef.h"
41 #include "winbase.h"
42 #include "winternl.h"
43 #include "msvcrt.h"
44 #include "mtdll.h"
45
46 #include "wine/unicode.h"
47
48 #include "wine/debug.h"
49
50 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
51
52 /* for stat mode, permissions apply to all,owner and group */
53 #define ALL_S_IREAD  (MSVCRT__S_IREAD  | (MSVCRT__S_IREAD  >> 3) | (MSVCRT__S_IREAD  >> 6))
54 #define ALL_S_IWRITE (MSVCRT__S_IWRITE | (MSVCRT__S_IWRITE >> 3) | (MSVCRT__S_IWRITE >> 6))
55 #define ALL_S_IEXEC  (MSVCRT__S_IEXEC  | (MSVCRT__S_IEXEC  >> 3) | (MSVCRT__S_IEXEC  >> 6))
56
57 /* _access() bit flags FIXME: incomplete */
58 #define MSVCRT_W_OK      0x02
59 #define MSVCRT_R_OK      0x04
60
61 /* values for wxflag in file descriptor */
62 #define WX_OPEN           0x01
63 #define WX_ATEOF          0x02
64 #define WX_READEOF        0x04  /* like ATEOF, but for underlying file rather than buffer */
65 #define WX_READCR         0x08  /* underlying file is at \r */
66 #define WX_DONTINHERIT    0x10
67 #define WX_APPEND         0x20
68 #define WX_TEXT           0x80
69
70 /* FIXME: this should be allocated dynamically */
71 #define MSVCRT_MAX_FILES 2048
72 #define MSVCRT_FD_BLOCK_SIZE 64
73
74 /* ioinfo structure size is different in msvcrXX.dll's */
75 typedef struct {
76     HANDLE              handle;
77     unsigned char       wxflag;
78     char                unk1;
79     BOOL                crit_init;
80     CRITICAL_SECTION    crit;
81 } ioinfo;
82
83 /*********************************************************************
84  *              __pioinfo (MSVCRT.@)
85  * array of pointers to ioinfo arrays [64]
86  */
87 ioinfo * MSVCRT___pioinfo[MSVCRT_MAX_FILES/MSVCRT_FD_BLOCK_SIZE] = { 0 };
88
89 /*********************************************************************
90  *              __badioinfo (MSVCRT.@)
91  */
92 ioinfo MSVCRT___badioinfo = { INVALID_HANDLE_VALUE, WX_TEXT };
93
94 static int MSVCRT_fdstart = 3; /* first unallocated fd */
95 static int MSVCRT_fdend = 3; /* highest allocated fd */
96
97 typedef struct {
98     MSVCRT_FILE file;
99     CRITICAL_SECTION crit;
100 } file_crit;
101
102 MSVCRT_FILE MSVCRT__iob[_IOB_ENTRIES] = { { 0 } };
103 static file_crit* MSVCRT_fstream[MSVCRT_MAX_FILES/MSVCRT_FD_BLOCK_SIZE];
104 static int MSVCRT_max_streams = 512, MSVCRT_stream_idx;
105
106 /* INTERNAL: process umask */
107 static int MSVCRT_umask = 0;
108
109 /* INTERNAL: static data for tmpnam and _wtmpname functions */
110 static int tmpnam_unique;
111
112 static const unsigned int EXE = 'e' << 16 | 'x' << 8 | 'e';
113 static const unsigned int BAT = 'b' << 16 | 'a' << 8 | 't';
114 static const unsigned int CMD = 'c' << 16 | 'm' << 8 | 'd';
115 static const unsigned int COM = 'c' << 16 | 'o' << 8 | 'm';
116
117 #define TOUL(x) (ULONGLONG)(x)
118 static const ULONGLONG WCEXE = TOUL('e') << 32 | TOUL('x') << 16 | TOUL('e');
119 static const ULONGLONG WCBAT = TOUL('b') << 32 | TOUL('a') << 16 | TOUL('t');
120 static const ULONGLONG WCCMD = TOUL('c') << 32 | TOUL('m') << 16 | TOUL('d');
121 static const ULONGLONG WCCOM = TOUL('c') << 32 | TOUL('o') << 16 | TOUL('m');
122
123 /* This critical section protects the tables MSVCRT___pioinfo and MSVCRT_fstreams,
124  * and their related indexes, MSVCRT_fdstart, MSVCRT_fdend,
125  * and MSVCRT_stream_idx, from race conditions.
126  * It doesn't protect against race conditions manipulating the underlying files
127  * or flags; doing so would probably be better accomplished with per-file
128  * protection, rather than locking the whole table for every change.
129  */
130 static CRITICAL_SECTION MSVCRT_file_cs;
131 #define LOCK_FILES()    do { EnterCriticalSection(&MSVCRT_file_cs); } while (0)
132 #define UNLOCK_FILES()  do { LeaveCriticalSection(&MSVCRT_file_cs); } while (0)
133
134 static void msvcrt_stat64_to_stat(const struct MSVCRT__stat64 *buf64, struct MSVCRT__stat *buf)
135 {
136     buf->st_dev   = buf64->st_dev;
137     buf->st_ino   = buf64->st_ino;
138     buf->st_mode  = buf64->st_mode;
139     buf->st_nlink = buf64->st_nlink;
140     buf->st_uid   = buf64->st_uid;
141     buf->st_gid   = buf64->st_gid;
142     buf->st_rdev  = buf64->st_rdev;
143     buf->st_size  = buf64->st_size;
144     buf->st_atime = buf64->st_atime;
145     buf->st_mtime = buf64->st_mtime;
146     buf->st_ctime = buf64->st_ctime;
147 }
148
149 static void msvcrt_stat64_to_stati64(const struct MSVCRT__stat64 *buf64, struct MSVCRT__stati64 *buf)
150 {
151     buf->st_dev   = buf64->st_dev;
152     buf->st_ino   = buf64->st_ino;
153     buf->st_mode  = buf64->st_mode;
154     buf->st_nlink = buf64->st_nlink;
155     buf->st_uid   = buf64->st_uid;
156     buf->st_gid   = buf64->st_gid;
157     buf->st_rdev  = buf64->st_rdev;
158     buf->st_size  = buf64->st_size;
159     buf->st_atime = buf64->st_atime;
160     buf->st_mtime = buf64->st_mtime;
161     buf->st_ctime = buf64->st_ctime;
162 }
163
164 static void time_to_filetime( MSVCRT___time64_t time, FILETIME *ft )
165 {
166     /* 1601 to 1970 is 369 years plus 89 leap days */
167     static const __int64 secs_1601_to_1970 = ((369 * 365 + 89) * (__int64)86400);
168
169     __int64 ticks = (time + secs_1601_to_1970) * 10000000;
170     ft->dwHighDateTime = ticks >> 32;
171     ft->dwLowDateTime = ticks;
172 }
173
174 static inline ioinfo* msvcrt_get_ioinfo(int fd)
175 {
176     ioinfo *ret = NULL;
177     if(fd < MSVCRT_MAX_FILES)
178         ret = MSVCRT___pioinfo[fd/MSVCRT_FD_BLOCK_SIZE];
179     if(!ret)
180         return &MSVCRT___badioinfo;
181
182     return ret + (fd%MSVCRT_FD_BLOCK_SIZE);
183 }
184
185 static inline MSVCRT_FILE* msvcrt_get_file(int i)
186 {
187     file_crit *ret;
188
189     if(i >= MSVCRT_max_streams)
190         return NULL;
191
192     if(i < _IOB_ENTRIES)
193         return &MSVCRT__iob[i];
194
195     ret = MSVCRT_fstream[i/MSVCRT_FD_BLOCK_SIZE];
196     if(!ret) {
197         MSVCRT_fstream[i/MSVCRT_FD_BLOCK_SIZE] = MSVCRT_calloc(MSVCRT_FD_BLOCK_SIZE, sizeof(file_crit));
198         if(!MSVCRT_fstream[i/MSVCRT_FD_BLOCK_SIZE]) {
199             ERR("out of memory\n");
200             *MSVCRT__errno() = MSVCRT_ENOMEM;
201             return NULL;
202         }
203
204         ret = MSVCRT_fstream[i/MSVCRT_FD_BLOCK_SIZE] + (i%MSVCRT_FD_BLOCK_SIZE);
205     } else
206         ret += i%MSVCRT_FD_BLOCK_SIZE;
207
208     return &ret->file;
209 }
210
211 static inline BOOL msvcrt_is_valid_fd(int fd)
212 {
213     return fd >= 0 && fd < MSVCRT_fdend && (msvcrt_get_ioinfo(fd)->wxflag & WX_OPEN);
214 }
215
216 /* INTERNAL: Get the HANDLE for a fd
217  * This doesn't lock the table, because a failure will result in
218  * INVALID_HANDLE_VALUE being returned, which should be handled correctly.  If
219  * it returns a valid handle which is about to be closed, a subsequent call
220  * will fail, most likely in a sane way.
221  */
222 static HANDLE msvcrt_fdtoh(int fd)
223 {
224   if (!msvcrt_is_valid_fd(fd))
225   {
226     WARN(":fd (%d) - no handle!\n",fd);
227     *MSVCRT___doserrno() = 0;
228     *MSVCRT__errno() = MSVCRT_EBADF;
229     return INVALID_HANDLE_VALUE;
230   }
231   if (msvcrt_get_ioinfo(fd)->handle == INVALID_HANDLE_VALUE)
232       FIXME("returning INVALID_HANDLE_VALUE for %d\n", fd);
233   return msvcrt_get_ioinfo(fd)->handle;
234 }
235
236 /* INTERNAL: free a file entry fd */
237 static void msvcrt_free_fd(int fd)
238 {
239   HANDLE old_handle;
240   ioinfo *fdinfo;
241
242   LOCK_FILES();
243   fdinfo = msvcrt_get_ioinfo(fd);
244   old_handle = fdinfo->handle;
245   if(fdinfo != &MSVCRT___badioinfo)
246   {
247     fdinfo->handle = INVALID_HANDLE_VALUE;
248     fdinfo->wxflag = 0;
249   }
250   TRACE(":fd (%d) freed\n",fd);
251   if (fd < 3) /* don't use 0,1,2 for user files */
252   {
253     switch (fd)
254     {
255     case 0:
256         if (GetStdHandle(STD_INPUT_HANDLE) == old_handle) SetStdHandle(STD_INPUT_HANDLE, 0);
257         break;
258     case 1:
259         if (GetStdHandle(STD_OUTPUT_HANDLE) == old_handle) SetStdHandle(STD_OUTPUT_HANDLE, 0);
260         break;
261     case 2:
262         if (GetStdHandle(STD_ERROR_HANDLE) == old_handle) SetStdHandle(STD_ERROR_HANDLE, 0);
263         break;
264     }
265   }
266   else
267   {
268     if (fd == MSVCRT_fdend - 1)
269       MSVCRT_fdend--;
270     if (fd < MSVCRT_fdstart)
271       MSVCRT_fdstart = fd;
272   }
273   UNLOCK_FILES();
274 }
275
276 /* INTERNAL: Allocate an fd slot from a Win32 HANDLE, starting from fd */
277 /* caller must hold the files lock */
278 static int msvcrt_alloc_fd_from(HANDLE hand, int flag, int fd)
279 {
280   ioinfo *fdinfo;
281
282   if (fd >= MSVCRT_MAX_FILES)
283   {
284     WARN(":files exhausted!\n");
285     *MSVCRT__errno() = MSVCRT_ENFILE;
286     return -1;
287   }
288
289   fdinfo = msvcrt_get_ioinfo(fd);
290   if(fdinfo == &MSVCRT___badioinfo) {
291     int i;
292
293     MSVCRT___pioinfo[fd/MSVCRT_FD_BLOCK_SIZE] = MSVCRT_calloc(MSVCRT_FD_BLOCK_SIZE, sizeof(ioinfo));
294     if(!MSVCRT___pioinfo[fd/MSVCRT_FD_BLOCK_SIZE]) {
295       WARN(":out of memory!\n");
296       *MSVCRT__errno() = MSVCRT_ENOMEM;
297       return -1;
298     }
299
300     for(i=0; i<MSVCRT_FD_BLOCK_SIZE; i++)
301       MSVCRT___pioinfo[fd/MSVCRT_FD_BLOCK_SIZE][i].handle = INVALID_HANDLE_VALUE;
302
303     fdinfo = msvcrt_get_ioinfo(fd);
304   }
305
306   fdinfo->handle = hand;
307   fdinfo->wxflag = WX_OPEN | (flag & (WX_DONTINHERIT | WX_APPEND | WX_TEXT));
308
309   /* locate next free slot */
310   if (fd == MSVCRT_fdstart && fd == MSVCRT_fdend)
311     MSVCRT_fdstart = MSVCRT_fdend + 1;
312   else
313     while (MSVCRT_fdstart < MSVCRT_fdend &&
314       msvcrt_get_ioinfo(MSVCRT_fdstart)->handle != INVALID_HANDLE_VALUE)
315       MSVCRT_fdstart++;
316   /* update last fd in use */
317   if (fd >= MSVCRT_fdend)
318     MSVCRT_fdend = fd + 1;
319   TRACE("fdstart is %d, fdend is %d\n", MSVCRT_fdstart, MSVCRT_fdend);
320
321   switch (fd)
322   {
323   case 0: SetStdHandle(STD_INPUT_HANDLE,  hand); break;
324   case 1: SetStdHandle(STD_OUTPUT_HANDLE, hand); break;
325   case 2: SetStdHandle(STD_ERROR_HANDLE,  hand); break;
326   }
327
328   return fd;
329 }
330
331 /* INTERNAL: Allocate an fd slot from a Win32 HANDLE */
332 static int msvcrt_alloc_fd(HANDLE hand, int flag)
333 {
334   int ret;
335
336   LOCK_FILES();
337   TRACE(":handle (%p) allocating fd (%d)\n",hand,MSVCRT_fdstart);
338   ret = msvcrt_alloc_fd_from(hand, flag, MSVCRT_fdstart);
339   UNLOCK_FILES();
340   return ret;
341 }
342
343 /* INTERNAL: Allocate a FILE* for an fd slot */
344 /* caller must hold the files lock */
345 static MSVCRT_FILE* msvcrt_alloc_fp(void)
346 {
347   unsigned int i;
348   MSVCRT_FILE *file;
349
350   for (i = 3; i < MSVCRT_max_streams; i++)
351   {
352     file = msvcrt_get_file(i);
353     if (!file)
354       return NULL;
355
356     if (file->_flag == 0)
357     {
358       if (i == MSVCRT_stream_idx) MSVCRT_stream_idx++;
359       return file;
360     }
361   }
362
363   return NULL;
364 }
365
366 /* INTERNAL: initialize a FILE* from an open fd */
367 static int msvcrt_init_fp(MSVCRT_FILE* file, int fd, unsigned stream_flags)
368 {
369   TRACE(":fd (%d) allocating FILE*\n",fd);
370   if (!msvcrt_is_valid_fd(fd))
371   {
372     WARN(":invalid fd %d\n",fd);
373     *MSVCRT___doserrno() = 0;
374     *MSVCRT__errno() = MSVCRT_EBADF;
375     return -1;
376   }
377   memset(file, 0, sizeof(*file));
378   file->_file = fd;
379   file->_flag = stream_flags;
380
381   if(file<MSVCRT__iob || file>=MSVCRT__iob+_IOB_ENTRIES)
382       InitializeCriticalSection(&((file_crit*)file)->crit);
383
384   TRACE(":got FILE* (%p)\n",file);
385   return 0;
386 }
387
388 /* INTERNAL: Create an inheritance data block (for spawned process)
389  * The inheritance block is made of:
390  *      00      int     nb of file descriptor (NBFD)
391  *      04      char    file flags (wxflag): repeated for each fd
392  *      4+NBFD  HANDLE  file handle: repeated for each fd
393  */
394 unsigned msvcrt_create_io_inherit_block(WORD *size, BYTE **block)
395 {
396   int         fd;
397   char*       wxflag_ptr;
398   HANDLE*     handle_ptr;
399   ioinfo*     fdinfo;
400
401   *size = sizeof(unsigned) + (sizeof(char) + sizeof(HANDLE)) * MSVCRT_fdend;
402   *block = MSVCRT_calloc(*size, 1);
403   if (!*block)
404   {
405     *size = 0;
406     return FALSE;
407   }
408   wxflag_ptr = (char*)*block + sizeof(unsigned);
409   handle_ptr = (HANDLE*)(wxflag_ptr + MSVCRT_fdend * sizeof(char));
410
411   *(unsigned*)*block = MSVCRT_fdend;
412   for (fd = 0; fd < MSVCRT_fdend; fd++)
413   {
414     /* to be inherited, we need it to be open, and that DONTINHERIT isn't set */
415     fdinfo = msvcrt_get_ioinfo(fd);
416     if ((fdinfo->wxflag & (WX_OPEN | WX_DONTINHERIT)) == WX_OPEN)
417     {
418       *wxflag_ptr = fdinfo->wxflag;
419       *handle_ptr = fdinfo->handle;
420     }
421     else
422     {
423       *wxflag_ptr = 0;
424       *handle_ptr = INVALID_HANDLE_VALUE;
425     }
426     wxflag_ptr++; handle_ptr++;
427   } 
428   return TRUE;
429 }
430
431 /* INTERNAL: Set up all file descriptors, 
432  * as well as default streams (stdin, stderr and stdout) 
433  */
434 void msvcrt_init_io(void)
435 {
436   STARTUPINFOA  si;
437   int           i;
438   ioinfo        *fdinfo;
439
440   InitializeCriticalSection(&MSVCRT_file_cs);
441   MSVCRT_file_cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": MSVCRT_file_cs");
442   GetStartupInfoA(&si);
443   if (si.cbReserved2 >= sizeof(unsigned int) && si.lpReserved2 != NULL)
444   {
445     BYTE*       wxflag_ptr;
446     HANDLE*     handle_ptr;
447     unsigned int count;
448
449     count = *(unsigned*)si.lpReserved2;
450     wxflag_ptr = si.lpReserved2 + sizeof(unsigned);
451     handle_ptr = (HANDLE*)(wxflag_ptr + count);
452
453     count = min(count, (si.cbReserved2 - sizeof(unsigned)) / (sizeof(HANDLE) + 1));
454     count = min(count, MSVCRT_MAX_FILES);
455     for (i = 0; i < count; i++)
456     {
457       if ((*wxflag_ptr & WX_OPEN) && *handle_ptr != INVALID_HANDLE_VALUE)
458         msvcrt_alloc_fd_from(*handle_ptr, *wxflag_ptr, i);
459
460       wxflag_ptr++; handle_ptr++;
461     }
462     MSVCRT_fdend = max( 3, count );
463     for (MSVCRT_fdstart = 3; MSVCRT_fdstart < MSVCRT_fdend; MSVCRT_fdstart++)
464         if (msvcrt_get_ioinfo(MSVCRT_fdstart)->handle == INVALID_HANDLE_VALUE) break;
465   }
466
467   if(!MSVCRT___pioinfo[0])
468       msvcrt_alloc_fd_from(INVALID_HANDLE_VALUE, 0, 3);
469
470   fdinfo = msvcrt_get_ioinfo(0);
471   if (!(fdinfo->wxflag & WX_OPEN) || fdinfo->handle == INVALID_HANDLE_VALUE)
472   {
473       HANDLE std = GetStdHandle(STD_INPUT_HANDLE);
474       if (std != INVALID_HANDLE_VALUE && DuplicateHandle(GetCurrentProcess(), std,
475                                                          GetCurrentProcess(), &fdinfo->handle,
476                                                          0, TRUE, DUPLICATE_SAME_ACCESS))
477           fdinfo->wxflag = WX_OPEN | WX_TEXT;
478   }
479
480   fdinfo = msvcrt_get_ioinfo(1);
481   if (!(fdinfo->wxflag & WX_OPEN) || fdinfo->handle == INVALID_HANDLE_VALUE)
482   {
483       HANDLE std = GetStdHandle(STD_OUTPUT_HANDLE);
484       if (std != INVALID_HANDLE_VALUE && DuplicateHandle(GetCurrentProcess(), std,
485                                                          GetCurrentProcess(), &fdinfo->handle,
486                                                          0, TRUE, DUPLICATE_SAME_ACCESS))
487           fdinfo->wxflag = WX_OPEN | WX_TEXT;
488   }
489
490   fdinfo = msvcrt_get_ioinfo(2);
491   if (!(fdinfo->wxflag & WX_OPEN) || fdinfo->handle == INVALID_HANDLE_VALUE)
492   {
493       HANDLE std = GetStdHandle(STD_ERROR_HANDLE);
494       if (std != INVALID_HANDLE_VALUE && DuplicateHandle(GetCurrentProcess(), std,
495                                                          GetCurrentProcess(), &fdinfo->handle,
496                                                          0, TRUE, DUPLICATE_SAME_ACCESS))
497           fdinfo->wxflag = WX_OPEN | WX_TEXT;
498   }
499
500   TRACE(":handles (%p)(%p)(%p)\n", msvcrt_get_ioinfo(0)->handle,
501         msvcrt_get_ioinfo(1)->handle, msvcrt_get_ioinfo(2)->handle);
502
503   memset(MSVCRT__iob,0,3*sizeof(MSVCRT_FILE));
504   for (i = 0; i < 3; i++)
505   {
506     /* FILE structs for stdin/out/err are static and never deleted */
507     MSVCRT__iob[i]._file = i;
508     MSVCRT__iob[i]._tmpfname = NULL;
509     MSVCRT__iob[i]._flag = (i == 0) ? MSVCRT__IOREAD : MSVCRT__IOWRT;
510   }
511   MSVCRT_stream_idx = 3;
512 }
513
514 /* INTERNAL: Flush stdio file buffer */
515 static int msvcrt_flush_buffer(MSVCRT_FILE* file)
516 {
517   if(file->_bufsiz) {
518         int cnt=file->_ptr-file->_base;
519         if(cnt>0 && MSVCRT__write(file->_file, file->_base, cnt) != cnt) {
520             file->_flag |= MSVCRT__IOERR;
521             return MSVCRT_EOF;
522         }
523         file->_ptr=file->_base;
524         file->_cnt=file->_bufsiz;
525   }
526   return 0;
527 }
528
529 /* INTERNAL: Allocate stdio file buffer */
530 static void msvcrt_alloc_buffer(MSVCRT_FILE* file)
531 {
532         file->_base = MSVCRT_calloc(MSVCRT_BUFSIZ,1);
533         if(file->_base) {
534                 file->_bufsiz = MSVCRT_BUFSIZ;
535                 file->_flag |= MSVCRT__IOMYBUF;
536         } else {
537                 file->_base = (char*)(&file->_charbuf);
538                 /* put here 2 ??? */
539                 file->_bufsiz = sizeof(file->_charbuf);
540         }
541         file->_ptr = file->_base;
542         file->_cnt = 0;
543 }
544
545 /* INTERNAL: Convert integer to base32 string (0-9a-v), 0 becomes "" */
546 static int msvcrt_int_to_base32(int num, char *str)
547 {
548   char *p;
549   int n = num;
550   int digits = 0;
551
552   while (n != 0)
553   {
554     n >>= 5;
555     digits++;
556   }
557   p = str + digits;
558   *p = 0;
559   while (--p >= str)
560   {
561     *p = (num & 31) + '0';
562     if (*p > '9')
563       *p += ('a' - '0' - 10);
564     num >>= 5;
565   }
566
567   return digits;
568 }
569
570 /* INTERNAL: wide character version of msvcrt_int_to_base32 */
571 static int msvcrt_int_to_base32_w(int num, MSVCRT_wchar_t *str)
572 {
573     MSVCRT_wchar_t *p;
574     int n = num;
575     int digits = 0;
576
577     while (n != 0)
578     {
579         n >>= 5;
580         digits++;
581     }
582     p = str + digits;
583     *p = 0;
584     while (--p >= str)
585     {
586         *p = (num & 31) + '0';
587         if (*p > '9')
588             *p += ('a' - '0' - 10);
589         num >>= 5;
590     }
591
592     return digits;
593 }
594
595 /*********************************************************************
596  *              __iob_func(MSVCRT.@)
597  */
598 MSVCRT_FILE * CDECL MSVCRT___iob_func(void)
599 {
600  return &MSVCRT__iob[0];
601 }
602
603 /*********************************************************************
604  *              _access (MSVCRT.@)
605  */
606 int CDECL MSVCRT__access(const char *filename, int mode)
607 {
608   DWORD attr = GetFileAttributesA(filename);
609
610   TRACE("(%s,%d) %d\n",filename,mode,attr);
611
612   if (!filename || attr == INVALID_FILE_ATTRIBUTES)
613   {
614     msvcrt_set_errno(GetLastError());
615     return -1;
616   }
617   if ((attr & FILE_ATTRIBUTE_READONLY) && (mode & MSVCRT_W_OK))
618   {
619     msvcrt_set_errno(ERROR_ACCESS_DENIED);
620     return -1;
621   }
622   return 0;
623 }
624
625 /*********************************************************************
626  *              _access_s (MSVCRT.@)
627  */
628 int CDECL _access_s(const char *filename, int mode)
629 {
630   if (!MSVCRT_CHECK_PMT(filename != NULL) ||
631       !MSVCRT_CHECK_PMT((mode & ~(MSVCRT_R_OK | MSVCRT_W_OK)) == 0))
632   {
633      *MSVCRT__errno() = MSVCRT_EINVAL;
634      return -1;
635   }
636
637   return MSVCRT__access(filename, mode);
638 }
639
640 /*********************************************************************
641  *              _waccess (MSVCRT.@)
642  */
643 int CDECL _waccess(const MSVCRT_wchar_t *filename, int mode)
644 {
645   DWORD attr = GetFileAttributesW(filename);
646
647   TRACE("(%s,%d) %d\n",debugstr_w(filename),mode,attr);
648
649   if (!filename || attr == INVALID_FILE_ATTRIBUTES)
650   {
651     msvcrt_set_errno(GetLastError());
652     return -1;
653   }
654   if ((attr & FILE_ATTRIBUTE_READONLY) && (mode & MSVCRT_W_OK))
655   {
656     msvcrt_set_errno(ERROR_ACCESS_DENIED);
657     return -1;
658   }
659   return 0;
660 }
661
662 /*********************************************************************
663  *              _waccess_s (MSVCRT.@)
664  */
665 int CDECL _waccess_s(const MSVCRT_wchar_t *filename, int mode)
666 {
667   if (!MSVCRT_CHECK_PMT(filename != NULL) ||
668       !MSVCRT_CHECK_PMT((mode & ~(MSVCRT_R_OK | MSVCRT_W_OK)) == 0))
669   {
670      *MSVCRT__errno() = MSVCRT_EINVAL;
671      return -1;
672   }
673
674   return _waccess(filename, mode);
675 }
676
677 /*********************************************************************
678  *              _chmod (MSVCRT.@)
679  */
680 int CDECL MSVCRT__chmod(const char *path, int flags)
681 {
682   DWORD oldFlags = GetFileAttributesA(path);
683
684   if (oldFlags != INVALID_FILE_ATTRIBUTES)
685   {
686     DWORD newFlags = (flags & MSVCRT__S_IWRITE)? oldFlags & ~FILE_ATTRIBUTE_READONLY:
687       oldFlags | FILE_ATTRIBUTE_READONLY;
688
689     if (newFlags == oldFlags || SetFileAttributesA(path, newFlags))
690       return 0;
691   }
692   msvcrt_set_errno(GetLastError());
693   return -1;
694 }
695
696 /*********************************************************************
697  *              _wchmod (MSVCRT.@)
698  */
699 int CDECL _wchmod(const MSVCRT_wchar_t *path, int flags)
700 {
701   DWORD oldFlags = GetFileAttributesW(path);
702
703   if (oldFlags != INVALID_FILE_ATTRIBUTES)
704   {
705     DWORD newFlags = (flags & MSVCRT__S_IWRITE)? oldFlags & ~FILE_ATTRIBUTE_READONLY:
706       oldFlags | FILE_ATTRIBUTE_READONLY;
707
708     if (newFlags == oldFlags || SetFileAttributesW(path, newFlags))
709       return 0;
710   }
711   msvcrt_set_errno(GetLastError());
712   return -1;
713 }
714
715 /*********************************************************************
716  *              _unlink (MSVCRT.@)
717  */
718 int CDECL MSVCRT__unlink(const char *path)
719 {
720   TRACE("%s\n",debugstr_a(path));
721   if(DeleteFileA(path))
722     return 0;
723   TRACE("failed (%d)\n",GetLastError());
724   msvcrt_set_errno(GetLastError());
725   return -1;
726 }
727
728 /*********************************************************************
729  *              _wunlink (MSVCRT.@)
730  */
731 int CDECL _wunlink(const MSVCRT_wchar_t *path)
732 {
733   TRACE("(%s)\n",debugstr_w(path));
734   if(DeleteFileW(path))
735     return 0;
736   TRACE("failed (%d)\n",GetLastError());
737   msvcrt_set_errno(GetLastError());
738   return -1;
739 }
740
741 /* _flushall calls MSVCRT_fflush which calls _flushall */
742 int CDECL MSVCRT_fflush(MSVCRT_FILE* file);
743
744 /*********************************************************************
745  *              _flushall (MSVCRT.@)
746  */
747 int CDECL _flushall(void)
748 {
749   int i, num_flushed = 0;
750   MSVCRT_FILE *file;
751
752   LOCK_FILES();
753   for (i = 3; i < MSVCRT_stream_idx; i++) {
754     file = msvcrt_get_file(i);
755
756     if (file->_flag)
757     {
758       if(file->_flag & MSVCRT__IOWRT) {
759         MSVCRT_fflush(file);
760         num_flushed++;
761       }
762     }
763   }
764   UNLOCK_FILES();
765
766   TRACE(":flushed (%d) handles\n",num_flushed);
767   return num_flushed;
768 }
769
770 /*********************************************************************
771  *              fflush (MSVCRT.@)
772  */
773 int CDECL MSVCRT_fflush(MSVCRT_FILE* file)
774 {
775     if(!file) {
776         _flushall();
777     } else if(file->_flag & MSVCRT__IOWRT) {
778         int res;
779
780         MSVCRT__lock_file(file);
781         res = msvcrt_flush_buffer(file);
782         MSVCRT__unlock_file(file);
783
784         return res;
785     }
786     return 0;
787 }
788
789 /*********************************************************************
790  *              _close (MSVCRT.@)
791  */
792 int CDECL MSVCRT__close(int fd)
793 {
794   HANDLE hand;
795   int ret;
796
797   LOCK_FILES();
798   hand = msvcrt_fdtoh(fd);
799   TRACE(":fd (%d) handle (%p)\n",fd,hand);
800   if (hand == INVALID_HANDLE_VALUE)
801     ret = -1;
802   else if (!CloseHandle(hand))
803   {
804     WARN(":failed-last error (%d)\n",GetLastError());
805     msvcrt_set_errno(GetLastError());
806     ret = -1;
807   }
808   else
809   {
810     msvcrt_free_fd(fd);
811     ret = 0;
812   }
813   UNLOCK_FILES();
814   TRACE(":ok\n");
815   return ret;
816 }
817
818 /*********************************************************************
819  *              _commit (MSVCRT.@)
820  */
821 int CDECL _commit(int fd)
822 {
823   HANDLE hand = msvcrt_fdtoh(fd);
824
825   TRACE(":fd (%d) handle (%p)\n",fd,hand);
826   if (hand == INVALID_HANDLE_VALUE)
827     return -1;
828
829   if (!FlushFileBuffers(hand))
830   {
831     if (GetLastError() == ERROR_INVALID_HANDLE)
832     {
833       /* FlushFileBuffers fails for console handles
834        * so we ignore this error.
835        */
836       return 0;
837     }
838     TRACE(":failed-last error (%d)\n",GetLastError());
839     msvcrt_set_errno(GetLastError());
840     return -1;
841   }
842   TRACE(":ok\n");
843   return 0;
844 }
845
846 /*********************************************************************
847  *              _dup2 (MSVCRT.@)
848  * NOTES
849  * MSDN isn't clear on this point, but the remarks for _pipe
850  * indicate file descriptors duplicated with _dup and _dup2 are always
851  * inheritable.
852  */
853 int CDECL MSVCRT__dup2(int od, int nd)
854 {
855   int ret;
856
857   TRACE("(od=%d, nd=%d)\n", od, nd);
858   LOCK_FILES();
859   if (nd < MSVCRT_MAX_FILES && nd >= 0 && msvcrt_is_valid_fd(od))
860   {
861     HANDLE handle;
862
863     if (DuplicateHandle(GetCurrentProcess(), msvcrt_get_ioinfo(od)->handle,
864      GetCurrentProcess(), &handle, 0, TRUE, DUPLICATE_SAME_ACCESS))
865     {
866       int wxflag = msvcrt_get_ioinfo(od)->wxflag & ~MSVCRT__O_NOINHERIT;
867
868       if (msvcrt_is_valid_fd(nd))
869         MSVCRT__close(nd);
870       ret = msvcrt_alloc_fd_from(handle, wxflag, nd);
871       if (ret == -1)
872       {
873         CloseHandle(handle);
874         *MSVCRT__errno() = MSVCRT_EMFILE;
875       }
876       else
877       {
878         /* _dup2 returns 0, not nd, on success */
879         ret = 0;
880       }
881     }
882     else
883     {
884       ret = -1;
885       msvcrt_set_errno(GetLastError());
886     }
887   }
888   else
889   {
890     *MSVCRT__errno() = MSVCRT_EBADF;
891     ret = -1;
892   }
893   UNLOCK_FILES();
894   return ret;
895 }
896
897 /*********************************************************************
898  *              _dup (MSVCRT.@)
899  */
900 int CDECL MSVCRT__dup(int od)
901 {
902   int fd, ret;
903  
904   LOCK_FILES();
905   fd = MSVCRT_fdstart;
906   if (MSVCRT__dup2(od, fd) == 0)
907     ret = fd;
908   else
909     ret = -1;
910   UNLOCK_FILES();
911   return ret;
912 }
913
914 /*********************************************************************
915  *              _eof (MSVCRT.@)
916  */
917 int CDECL _eof(int fd)
918 {
919   DWORD curpos,endpos;
920   LONG hcurpos,hendpos;
921   HANDLE hand = msvcrt_fdtoh(fd);
922
923   TRACE(":fd (%d) handle (%p)\n",fd,hand);
924
925   if (hand == INVALID_HANDLE_VALUE)
926     return -1;
927
928   if (msvcrt_get_ioinfo(fd)->wxflag & WX_ATEOF) return TRUE;
929
930   /* Otherwise we do it the hard way */
931   hcurpos = hendpos = 0;
932   curpos = SetFilePointer(hand, 0, &hcurpos, FILE_CURRENT);
933   endpos = SetFilePointer(hand, 0, &hendpos, FILE_END);
934
935   if (curpos == endpos && hcurpos == hendpos)
936   {
937     /* FIXME: shouldn't WX_ATEOF be set here? */
938     return TRUE;
939   }
940
941   SetFilePointer(hand, curpos, &hcurpos, FILE_BEGIN);
942   return FALSE;
943 }
944
945 /*********************************************************************
946  *              _fcloseall (MSVCRT.@)
947  */
948 int CDECL MSVCRT__fcloseall(void)
949 {
950   int num_closed = 0, i;
951   MSVCRT_FILE *file;
952
953   LOCK_FILES();
954   for (i = 3; i < MSVCRT_stream_idx; i++) {
955     file = msvcrt_get_file(i);
956
957     if (file->_flag && !MSVCRT_fclose(file))
958       num_closed++;
959   }
960   UNLOCK_FILES();
961
962   TRACE(":closed (%d) handles\n",num_closed);
963   return num_closed;
964 }
965
966 /* free everything on process exit */
967 void msvcrt_free_io(void)
968 {
969     int i;
970
971     MSVCRT__fcloseall();
972     /* The Win32 _fcloseall() function explicitly doesn't close stdin,
973      * stdout, and stderr (unlike GNU), so we need to fclose() them here
974      * or they won't get flushed.
975      */
976     MSVCRT_fclose(&MSVCRT__iob[0]);
977     MSVCRT_fclose(&MSVCRT__iob[1]);
978     MSVCRT_fclose(&MSVCRT__iob[2]);
979
980     for(i=0; i<sizeof(MSVCRT___pioinfo)/sizeof(MSVCRT___pioinfo[0]); i++)
981         MSVCRT_free(MSVCRT___pioinfo[i]);
982
983     for(i=0; i<sizeof(MSVCRT_fstream)/sizeof(MSVCRT_fstream[0]); i++)
984         MSVCRT_free(MSVCRT_fstream[i]);
985
986     MSVCRT_file_cs.DebugInfo->Spare[0] = 0;
987     DeleteCriticalSection(&MSVCRT_file_cs);
988 }
989
990 /*********************************************************************
991  *              _lseeki64 (MSVCRT.@)
992  */
993 __int64 CDECL MSVCRT__lseeki64(int fd, __int64 offset, int whence)
994 {
995   HANDLE hand = msvcrt_fdtoh(fd);
996   LARGE_INTEGER ofs;
997
998   TRACE(":fd (%d) handle (%p)\n",fd,hand);
999   if (hand == INVALID_HANDLE_VALUE)
1000     return -1;
1001
1002   if (whence < 0 || whence > 2)
1003   {
1004     *MSVCRT__errno() = MSVCRT_EINVAL;
1005     return -1;
1006   }
1007
1008   TRACE(":fd (%d) to %s pos %s\n",
1009         fd,wine_dbgstr_longlong(offset),
1010         (whence==SEEK_SET)?"SEEK_SET":
1011         (whence==SEEK_CUR)?"SEEK_CUR":
1012         (whence==SEEK_END)?"SEEK_END":"UNKNOWN");
1013
1014   /* The MoleBox protection scheme expects msvcrt to use SetFilePointer only,
1015    * so a LARGE_INTEGER offset cannot be passed directly via SetFilePointerEx. */
1016   ofs.QuadPart = offset;
1017   if ((ofs.u.LowPart = SetFilePointer(hand, ofs.u.LowPart, &ofs.u.HighPart, whence)) != INVALID_SET_FILE_POINTER ||
1018       GetLastError() == ERROR_SUCCESS)
1019   {
1020     msvcrt_get_ioinfo(fd)->wxflag &= ~(WX_ATEOF|WX_READEOF);
1021     /* FIXME: What if we seek _to_ EOF - is EOF set? */
1022
1023     return ofs.QuadPart;
1024   }
1025   TRACE(":error-last error (%d)\n",GetLastError());
1026   msvcrt_set_errno(GetLastError());
1027   return -1;
1028 }
1029
1030 /*********************************************************************
1031  *              _lseek (MSVCRT.@)
1032  */
1033 LONG CDECL MSVCRT__lseek(int fd, LONG offset, int whence)
1034 {
1035     return MSVCRT__lseeki64(fd, offset, whence);
1036 }
1037
1038 /*********************************************************************
1039  *              _lock_file (MSVCRT.@)
1040  */
1041 void CDECL MSVCRT__lock_file(MSVCRT_FILE *file)
1042 {
1043     if(file>=MSVCRT__iob && file<MSVCRT__iob+_IOB_ENTRIES)
1044         _lock(_STREAM_LOCKS+(file-MSVCRT__iob));
1045     else
1046         EnterCriticalSection(&((file_crit*)file)->crit);
1047 }
1048
1049 /*********************************************************************
1050  *              _unlock_file (MSVCRT.@)
1051  */
1052 void CDECL MSVCRT__unlock_file(MSVCRT_FILE *file)
1053 {
1054     if(file>=MSVCRT__iob && file<MSVCRT__iob+_IOB_ENTRIES)
1055         _unlock(_STREAM_LOCKS+(file-MSVCRT__iob));
1056     else
1057         LeaveCriticalSection(&((file_crit*)file)->crit);
1058 }
1059
1060 /*********************************************************************
1061  *              _locking (MSVCRT.@)
1062  *
1063  * This is untested; the underlying LockFile doesn't work yet.
1064  */
1065 int CDECL MSVCRT__locking(int fd, int mode, LONG nbytes)
1066 {
1067   BOOL ret;
1068   DWORD cur_locn;
1069   HANDLE hand = msvcrt_fdtoh(fd);
1070
1071   TRACE(":fd (%d) handle (%p)\n",fd,hand);
1072   if (hand == INVALID_HANDLE_VALUE)
1073     return -1;
1074
1075   if (mode < 0 || mode > 4)
1076   {
1077     *MSVCRT__errno() = MSVCRT_EINVAL;
1078     return -1;
1079   }
1080
1081   TRACE(":fd (%d) by 0x%08x mode %s\n",
1082         fd,nbytes,(mode==MSVCRT__LK_UNLCK)?"_LK_UNLCK":
1083         (mode==MSVCRT__LK_LOCK)?"_LK_LOCK":
1084         (mode==MSVCRT__LK_NBLCK)?"_LK_NBLCK":
1085         (mode==MSVCRT__LK_RLCK)?"_LK_RLCK":
1086         (mode==MSVCRT__LK_NBRLCK)?"_LK_NBRLCK":
1087                           "UNKNOWN");
1088
1089   if ((cur_locn = SetFilePointer(hand, 0L, NULL, SEEK_CUR)) == INVALID_SET_FILE_POINTER)
1090   {
1091     FIXME ("Seek failed\n");
1092     *MSVCRT__errno() = MSVCRT_EINVAL; /* FIXME */
1093     return -1;
1094   }
1095   if (mode == MSVCRT__LK_LOCK || mode == MSVCRT__LK_RLCK)
1096   {
1097     int nretry = 10;
1098     ret = 1; /* just to satisfy gcc */
1099     while (nretry--)
1100     {
1101       ret = LockFile(hand, cur_locn, 0L, nbytes, 0L);
1102       if (ret) break;
1103       Sleep(1);
1104     }
1105   }
1106   else if (mode == MSVCRT__LK_UNLCK)
1107     ret = UnlockFile(hand, cur_locn, 0L, nbytes, 0L);
1108   else
1109     ret = LockFile(hand, cur_locn, 0L, nbytes, 0L);
1110   /* FIXME - what about error settings? */
1111   return ret ? 0 : -1;
1112 }
1113
1114 /*********************************************************************
1115  *              _fseeki64 (MSVCRT.@)
1116  */
1117 int CDECL MSVCRT__fseeki64(MSVCRT_FILE* file, __int64 offset, int whence)
1118 {
1119   int ret;
1120
1121   MSVCRT__lock_file(file);
1122   /* Flush output if needed */
1123   if(file->_flag & MSVCRT__IOWRT)
1124         msvcrt_flush_buffer(file);
1125
1126   if(whence == SEEK_CUR && file->_flag & MSVCRT__IOREAD ) {
1127         offset -= file->_cnt;
1128         if (msvcrt_get_ioinfo(file->_file)->wxflag & WX_TEXT) {
1129                 /* Black magic correction for CR removal */
1130                 int i;
1131                 for (i=0; i<file->_cnt; i++) {
1132                         if (file->_ptr[i] == '\n')
1133                                 offset--;
1134                 }
1135                 /* Black magic when reading CR at buffer boundary*/
1136                 if(msvcrt_get_ioinfo(file->_file)->wxflag & WX_READCR)
1137                     offset--;
1138         }
1139   }
1140   /* Discard buffered input */
1141   file->_cnt = 0;
1142   file->_ptr = file->_base;
1143   /* Reset direction of i/o */
1144   if(file->_flag & MSVCRT__IORW) {
1145         file->_flag &= ~(MSVCRT__IOREAD|MSVCRT__IOWRT);
1146   }
1147   /* Clear end of file flag */
1148   file->_flag &= ~MSVCRT__IOEOF;
1149   ret = (MSVCRT__lseeki64(file->_file,offset,whence) == -1)?-1:0;
1150
1151   MSVCRT__unlock_file(file);
1152   return ret;
1153 }
1154
1155 /*********************************************************************
1156  *              fseek (MSVCRT.@)
1157  */
1158 int CDECL MSVCRT_fseek(MSVCRT_FILE* file, MSVCRT_long offset, int whence)
1159 {
1160     return MSVCRT__fseeki64( file, offset, whence );
1161 }
1162
1163 /*********************************************************************
1164  *              _chsize (MSVCRT.@)
1165  */
1166 int CDECL MSVCRT__chsize(int fd, MSVCRT_long size)
1167 {
1168     LONG cur, pos;
1169     HANDLE handle;
1170     BOOL ret = FALSE;
1171
1172     TRACE("(fd=%d, size=%d)\n", fd, size);
1173
1174     LOCK_FILES();
1175
1176     handle = msvcrt_fdtoh(fd);
1177     if (handle != INVALID_HANDLE_VALUE)
1178     {
1179         /* save the current file pointer */
1180         cur = MSVCRT__lseek(fd, 0, SEEK_CUR);
1181         if (cur >= 0)
1182         {
1183             pos = MSVCRT__lseek(fd, size, SEEK_SET);
1184             if (pos >= 0)
1185             {
1186                 ret = SetEndOfFile(handle);
1187                 if (!ret) msvcrt_set_errno(GetLastError());
1188             }
1189
1190             /* restore the file pointer */
1191             MSVCRT__lseek(fd, cur, SEEK_SET);
1192         }
1193     }
1194
1195     UNLOCK_FILES();
1196     return ret ? 0 : -1;
1197 }
1198
1199 /*********************************************************************
1200  *              clearerr (MSVCRT.@)
1201  */
1202 void CDECL MSVCRT_clearerr(MSVCRT_FILE* file)
1203 {
1204   TRACE(":file (%p) fd (%d)\n",file,file->_file);
1205
1206   MSVCRT__lock_file(file);
1207   file->_flag &= ~(MSVCRT__IOERR | MSVCRT__IOEOF);
1208   MSVCRT__unlock_file(file);
1209 }
1210
1211 /*********************************************************************
1212  *              rewind (MSVCRT.@)
1213  */
1214 void CDECL MSVCRT_rewind(MSVCRT_FILE* file)
1215 {
1216   TRACE(":file (%p) fd (%d)\n",file,file->_file);
1217
1218   MSVCRT__lock_file(file);
1219   MSVCRT_fseek(file, 0L, SEEK_SET);
1220   MSVCRT_clearerr(file);
1221   MSVCRT__unlock_file(file);
1222 }
1223
1224 static int msvcrt_get_flags(const MSVCRT_wchar_t* mode, int *open_flags, int* stream_flags)
1225 {
1226   int plus = strchrW(mode, '+') != NULL;
1227
1228   switch(*mode++)
1229   {
1230   case 'R': case 'r':
1231     *open_flags = plus ? MSVCRT__O_RDWR : MSVCRT__O_RDONLY;
1232     *stream_flags = plus ? MSVCRT__IORW : MSVCRT__IOREAD;
1233     break;
1234   case 'W': case 'w':
1235     *open_flags = MSVCRT__O_CREAT | MSVCRT__O_TRUNC | (plus  ? MSVCRT__O_RDWR : MSVCRT__O_WRONLY);
1236     *stream_flags = plus ? MSVCRT__IORW : MSVCRT__IOWRT;
1237     break;
1238   case 'A': case 'a':
1239     *open_flags = MSVCRT__O_CREAT | MSVCRT__O_APPEND | (plus  ? MSVCRT__O_RDWR : MSVCRT__O_WRONLY);
1240     *stream_flags = plus ? MSVCRT__IORW : MSVCRT__IOWRT;
1241     break;
1242   default:
1243     MSVCRT__invalid_parameter(NULL, NULL, NULL, 0, 0);
1244     *MSVCRT__errno() = MSVCRT_EINVAL;
1245     return -1;
1246   }
1247
1248   while (*mode)
1249     switch (*mode++)
1250     {
1251     case 'B': case 'b':
1252       *open_flags |=  MSVCRT__O_BINARY;
1253       *open_flags &= ~MSVCRT__O_TEXT;
1254       break;
1255     case 'T': case 't':
1256       *open_flags |=  MSVCRT__O_TEXT;
1257       *open_flags &= ~MSVCRT__O_BINARY;
1258       break;
1259     case '+':
1260     case ' ':
1261       break;
1262     default:
1263       FIXME(":unknown flag %c not supported\n",mode[-1]);
1264     }
1265   return 0;
1266 }
1267
1268 /*********************************************************************
1269  *              _fdopen (MSVCRT.@)
1270  */
1271 MSVCRT_FILE* CDECL MSVCRT__fdopen(int fd, const char *mode)
1272 {
1273     MSVCRT_FILE *ret;
1274     MSVCRT_wchar_t *modeW = NULL;
1275
1276     if (mode && !(modeW = msvcrt_wstrdupa(mode))) return NULL;
1277
1278     ret = MSVCRT__wfdopen(fd, modeW);
1279
1280     MSVCRT_free(modeW);
1281     return ret;
1282 }
1283
1284 /*********************************************************************
1285  *              _wfdopen (MSVCRT.@)
1286  */
1287 MSVCRT_FILE* CDECL MSVCRT__wfdopen(int fd, const MSVCRT_wchar_t *mode)
1288 {
1289   int open_flags, stream_flags;
1290   MSVCRT_FILE* file;
1291
1292   if (msvcrt_get_flags(mode, &open_flags, &stream_flags) == -1) return NULL;
1293
1294   LOCK_FILES();
1295   if (!(file = msvcrt_alloc_fp()))
1296     file = NULL;
1297   else if (msvcrt_init_fp(file, fd, stream_flags) == -1)
1298   {
1299     file->_flag = 0;
1300     file = NULL;
1301   }
1302   else TRACE(":fd (%d) mode (%s) FILE* (%p)\n", fd, debugstr_w(mode), file);
1303   UNLOCK_FILES();
1304
1305   return file;
1306 }
1307
1308 /*********************************************************************
1309  *              _filelength (MSVCRT.@)
1310  */
1311 LONG CDECL MSVCRT__filelength(int fd)
1312 {
1313   LONG curPos = MSVCRT__lseek(fd, 0, SEEK_CUR);
1314   if (curPos != -1)
1315   {
1316     LONG endPos = MSVCRT__lseek(fd, 0, SEEK_END);
1317     if (endPos != -1)
1318     {
1319       if (endPos != curPos)
1320         MSVCRT__lseek(fd, curPos, SEEK_SET);
1321       return endPos;
1322     }
1323   }
1324   return -1;
1325 }
1326
1327 /*********************************************************************
1328  *              _filelengthi64 (MSVCRT.@)
1329  */
1330 __int64 CDECL MSVCRT__filelengthi64(int fd)
1331 {
1332   __int64 curPos = MSVCRT__lseeki64(fd, 0, SEEK_CUR);
1333   if (curPos != -1)
1334   {
1335     __int64 endPos = MSVCRT__lseeki64(fd, 0, SEEK_END);
1336     if (endPos != -1)
1337     {
1338       if (endPos != curPos)
1339         MSVCRT__lseeki64(fd, curPos, SEEK_SET);
1340       return endPos;
1341     }
1342   }
1343   return -1;
1344 }
1345
1346 /*********************************************************************
1347  *              _fileno (MSVCRT.@)
1348  */
1349 int CDECL MSVCRT__fileno(MSVCRT_FILE* file)
1350 {
1351   int ret;
1352
1353   TRACE(":FILE* (%p) fd (%d)\n",file,file->_file);
1354
1355   MSVCRT__lock_file(file);
1356   ret = file->_file;
1357   MSVCRT__unlock_file(file);
1358
1359   return ret;
1360 }
1361
1362 /*********************************************************************
1363  *              _fstat64 (MSVCRT.@)
1364  */
1365 int CDECL MSVCRT__fstat64(int fd, struct MSVCRT__stat64* buf)
1366 {
1367   DWORD dw;
1368   DWORD type;
1369   BY_HANDLE_FILE_INFORMATION hfi;
1370   HANDLE hand = msvcrt_fdtoh(fd);
1371
1372   TRACE(":fd (%d) stat (%p)\n",fd,buf);
1373   if (hand == INVALID_HANDLE_VALUE)
1374     return -1;
1375
1376   if (!buf)
1377   {
1378     WARN(":failed-NULL buf\n");
1379     msvcrt_set_errno(ERROR_INVALID_PARAMETER);
1380     return -1;
1381   }
1382
1383   memset(&hfi, 0, sizeof(hfi));
1384   memset(buf, 0, sizeof(struct MSVCRT__stat64));
1385   type = GetFileType(hand);
1386   if (type == FILE_TYPE_PIPE)
1387   {
1388     buf->st_dev = buf->st_rdev = fd;
1389     buf->st_mode = S_IFIFO;
1390     buf->st_nlink = 1;
1391   }
1392   else if (type == FILE_TYPE_CHAR)
1393   {
1394     buf->st_dev = buf->st_rdev = fd;
1395     buf->st_mode = S_IFCHR;
1396     buf->st_nlink = 1;
1397   }
1398   else /* FILE_TYPE_DISK etc. */
1399   {
1400     if (!GetFileInformationByHandle(hand, &hfi))
1401     {
1402       WARN(":failed-last error (%d)\n",GetLastError());
1403       msvcrt_set_errno(ERROR_INVALID_PARAMETER);
1404       return -1;
1405     }
1406     buf->st_mode = S_IFREG | 0444;
1407     if (!(hfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY))
1408       buf->st_mode |= 0222;
1409     buf->st_size  = ((__int64)hfi.nFileSizeHigh << 32) + hfi.nFileSizeLow;
1410     RtlTimeToSecondsSince1970((LARGE_INTEGER *)&hfi.ftLastAccessTime, &dw);
1411     buf->st_atime = dw;
1412     RtlTimeToSecondsSince1970((LARGE_INTEGER *)&hfi.ftLastWriteTime, &dw);
1413     buf->st_mtime = buf->st_ctime = dw;
1414     buf->st_nlink = hfi.nNumberOfLinks;
1415   }
1416   TRACE(":dwFileAttributes = 0x%x, mode set to 0x%x\n",hfi.dwFileAttributes,
1417    buf->st_mode);
1418   return 0;
1419 }
1420
1421 /*********************************************************************
1422  *              _fstati64 (MSVCRT.@)
1423  */
1424 int CDECL MSVCRT__fstati64(int fd, struct MSVCRT__stati64* buf)
1425 {
1426   int ret;
1427   struct MSVCRT__stat64 buf64;
1428
1429   ret = MSVCRT__fstat64(fd, &buf64);
1430   if (!ret)
1431     msvcrt_stat64_to_stati64(&buf64, buf);
1432   return ret;
1433 }
1434
1435 /*********************************************************************
1436  *              _fstat (MSVCRT.@)
1437  */
1438 int CDECL MSVCRT__fstat(int fd, struct MSVCRT__stat* buf)
1439 { int ret;
1440   struct MSVCRT__stat64 buf64;
1441
1442   ret = MSVCRT__fstat64(fd, &buf64);
1443   if (!ret)
1444       msvcrt_stat64_to_stat(&buf64, buf);
1445   return ret;
1446 }
1447
1448 /*********************************************************************
1449  *              _futime64 (MSVCRT.@)
1450  */
1451 int CDECL _futime64(int fd, struct MSVCRT___utimbuf64 *t)
1452 {
1453   HANDLE hand = msvcrt_fdtoh(fd);
1454   FILETIME at, wt;
1455
1456   if (!t)
1457   {
1458       time_to_filetime( MSVCRT__time64(NULL), &at );
1459       wt = at;
1460   }
1461   else
1462   {
1463       time_to_filetime( t->actime, &at );
1464       time_to_filetime( t->modtime, &wt );
1465   }
1466
1467   if (!SetFileTime(hand, NULL, &at, &wt))
1468   {
1469     msvcrt_set_errno(GetLastError());
1470     return -1 ;
1471   }
1472   return 0;
1473 }
1474
1475 /*********************************************************************
1476  *              _futime32 (MSVCRT.@)
1477  */
1478 int CDECL _futime32(int fd, struct MSVCRT___utimbuf32 *t)
1479 {
1480     struct MSVCRT___utimbuf64 t64;
1481     t64.actime = t->actime;
1482     t64.modtime = t->modtime;
1483     return _futime64( fd, &t64 );
1484 }
1485
1486 /*********************************************************************
1487  *              _futime (MSVCRT.@)
1488  */
1489 #ifdef _WIN64
1490 int CDECL _futime(int fd, struct MSVCRT___utimbuf64 *t)
1491 {
1492     return _futime64( fd, t );
1493 }
1494 #else
1495 int CDECL _futime(int fd, struct MSVCRT___utimbuf32 *t)
1496 {
1497     return _futime32( fd, t );
1498 }
1499 #endif
1500
1501 /*********************************************************************
1502  *              _get_osfhandle (MSVCRT.@)
1503  */
1504 MSVCRT_intptr_t CDECL _get_osfhandle(int fd)
1505 {
1506   HANDLE hand = msvcrt_fdtoh(fd);
1507   TRACE(":fd (%d) handle (%p)\n",fd,hand);
1508
1509   return (MSVCRT_intptr_t)hand;
1510 }
1511
1512 /*********************************************************************
1513  *              _isatty (MSVCRT.@)
1514  */
1515 int CDECL _isatty(int fd)
1516 {
1517   HANDLE hand = msvcrt_fdtoh(fd);
1518
1519   TRACE(":fd (%d) handle (%p)\n",fd,hand);
1520   if (hand == INVALID_HANDLE_VALUE)
1521     return 0;
1522
1523   return GetFileType(hand) == FILE_TYPE_CHAR? 1 : 0;
1524 }
1525
1526 /*********************************************************************
1527  *              _mktemp (MSVCRT.@)
1528  */
1529 char * CDECL _mktemp(char *pattern)
1530 {
1531   int numX = 0;
1532   char *retVal = pattern;
1533   int id;
1534   char letter = 'a';
1535
1536   while(*pattern)
1537     numX = (*pattern++ == 'X')? numX + 1 : 0;
1538   if (numX < 5)
1539     return NULL;
1540   pattern--;
1541   id = GetCurrentProcessId();
1542   numX = 6;
1543   while(numX--)
1544   {
1545     int tempNum = id / 10;
1546     *pattern-- = id - (tempNum * 10) + '0';
1547     id = tempNum;
1548   }
1549   pattern++;
1550   do
1551   {
1552     *pattern = letter++;
1553     if (GetFileAttributesA(retVal) == INVALID_FILE_ATTRIBUTES &&
1554         GetLastError() == ERROR_FILE_NOT_FOUND)
1555       return retVal;
1556   } while(letter <= 'z');
1557   return NULL;
1558 }
1559
1560 /*********************************************************************
1561  *              _wmktemp (MSVCRT.@)
1562  */
1563 MSVCRT_wchar_t * CDECL _wmktemp(MSVCRT_wchar_t *pattern)
1564 {
1565   int numX = 0;
1566   MSVCRT_wchar_t *retVal = pattern;
1567   int id;
1568   MSVCRT_wchar_t letter = 'a';
1569
1570   while(*pattern)
1571     numX = (*pattern++ == 'X')? numX + 1 : 0;
1572   if (numX < 5)
1573     return NULL;
1574   pattern--;
1575   id = GetCurrentProcessId();
1576   numX = 6;
1577   while(numX--)
1578   {
1579     int tempNum = id / 10;
1580     *pattern-- = id - (tempNum * 10) + '0';
1581     id = tempNum;
1582   }
1583   pattern++;
1584   do
1585   {
1586     if (GetFileAttributesW(retVal) == INVALID_FILE_ATTRIBUTES &&
1587         GetLastError() == ERROR_FILE_NOT_FOUND)
1588       return retVal;
1589     *pattern = letter++;
1590   } while(letter != '|');
1591   return NULL;
1592 }
1593
1594 static unsigned split_oflags(unsigned oflags)
1595 {
1596     int         wxflags = 0;
1597     unsigned unsupp; /* until we support everything */
1598
1599     if (oflags & MSVCRT__O_APPEND)              wxflags |= WX_APPEND;
1600     if (oflags & MSVCRT__O_BINARY)              {/* Nothing to do */}
1601     else if (oflags & MSVCRT__O_TEXT)           wxflags |= WX_TEXT;
1602     else if (*__p__fmode() & MSVCRT__O_BINARY)  {/* Nothing to do */}
1603     else                                        wxflags |= WX_TEXT; /* default to TEXT*/
1604     if (oflags & MSVCRT__O_NOINHERIT)           wxflags |= WX_DONTINHERIT;
1605
1606     if ((unsupp = oflags & ~(
1607                     MSVCRT__O_BINARY|MSVCRT__O_TEXT|MSVCRT__O_APPEND|
1608                     MSVCRT__O_TRUNC|MSVCRT__O_EXCL|MSVCRT__O_CREAT|
1609                     MSVCRT__O_RDWR|MSVCRT__O_WRONLY|MSVCRT__O_TEMPORARY|
1610                     MSVCRT__O_NOINHERIT|
1611                     MSVCRT__O_SEQUENTIAL|MSVCRT__O_RANDOM|MSVCRT__O_SHORT_LIVED
1612                     )))
1613         ERR(":unsupported oflags 0x%04x\n",unsupp);
1614
1615     return wxflags;
1616 }
1617
1618 /*********************************************************************
1619  *              _pipe (MSVCRT.@)
1620  */
1621 int CDECL MSVCRT__pipe(int *pfds, unsigned int psize, int textmode)
1622 {
1623   int ret = -1;
1624   SECURITY_ATTRIBUTES sa;
1625   HANDLE readHandle, writeHandle;
1626
1627   if (!pfds)
1628   {
1629     *MSVCRT__errno() = MSVCRT_EINVAL;
1630     return -1;
1631   }
1632
1633   sa.nLength = sizeof(SECURITY_ATTRIBUTES);
1634   sa.bInheritHandle = !(textmode & MSVCRT__O_NOINHERIT);
1635   sa.lpSecurityDescriptor = NULL;
1636   if (CreatePipe(&readHandle, &writeHandle, &sa, psize))
1637   {
1638     unsigned int wxflags = split_oflags(textmode);
1639     int fd;
1640
1641     LOCK_FILES();
1642     fd = msvcrt_alloc_fd(readHandle, wxflags);
1643     if (fd != -1)
1644     {
1645       pfds[0] = fd;
1646       fd = msvcrt_alloc_fd(writeHandle, wxflags);
1647       if (fd != -1)
1648       {
1649         pfds[1] = fd;
1650         ret = 0;
1651       }
1652       else
1653       {
1654         MSVCRT__close(pfds[0]);
1655         CloseHandle(writeHandle);
1656         *MSVCRT__errno() = MSVCRT_EMFILE;
1657       }
1658     }
1659     else
1660     {
1661       CloseHandle(readHandle);
1662       CloseHandle(writeHandle);
1663       *MSVCRT__errno() = MSVCRT_EMFILE;
1664     }
1665     UNLOCK_FILES();
1666   }
1667   else
1668     msvcrt_set_errno(GetLastError());
1669
1670   return ret;
1671 }
1672
1673 /*********************************************************************
1674  *              _sopen_s (MSVCRT.@)
1675  */
1676 int CDECL MSVCRT__sopen_s( int *fd, const char *path, int oflags, int shflags, int pmode )
1677 {
1678   DWORD access = 0, creation = 0, attrib;
1679   DWORD sharing;
1680   int wxflag;
1681   HANDLE hand;
1682   SECURITY_ATTRIBUTES sa;
1683
1684   TRACE("fd*: %p file: (%s) oflags: 0x%04x shflags: 0x%04x pmode: 0x%04x\n",
1685         fd, path, oflags, shflags, pmode);
1686
1687   if (!fd)
1688   {
1689     MSVCRT_INVALID_PMT("null out fd pointer");
1690     *MSVCRT__errno() = MSVCRT_EINVAL;
1691     return MSVCRT_EINVAL;
1692   }
1693
1694   *fd = -1;
1695   wxflag = split_oflags(oflags);
1696   switch (oflags & (MSVCRT__O_RDONLY | MSVCRT__O_WRONLY | MSVCRT__O_RDWR))
1697   {
1698   case MSVCRT__O_RDONLY: access |= GENERIC_READ; break;
1699   case MSVCRT__O_WRONLY: access |= GENERIC_WRITE; break;
1700   case MSVCRT__O_RDWR:   access |= GENERIC_WRITE | GENERIC_READ; break;
1701   }
1702
1703   if (oflags & MSVCRT__O_CREAT)
1704   {
1705     if(pmode & ~(MSVCRT__S_IREAD | MSVCRT__S_IWRITE))
1706       FIXME(": pmode 0x%04x ignored\n", pmode);
1707     else
1708       WARN(": pmode 0x%04x ignored\n", pmode);
1709
1710     if (oflags & MSVCRT__O_EXCL)
1711       creation = CREATE_NEW;
1712     else if (oflags & MSVCRT__O_TRUNC)
1713       creation = CREATE_ALWAYS;
1714     else
1715       creation = OPEN_ALWAYS;
1716   }
1717   else  /* no MSVCRT__O_CREAT */
1718   {
1719     if (oflags & MSVCRT__O_TRUNC)
1720       creation = TRUNCATE_EXISTING;
1721     else
1722       creation = OPEN_EXISTING;
1723   }
1724   
1725   switch( shflags )
1726   {
1727     case MSVCRT__SH_DENYRW:
1728       sharing = 0L;
1729       break;
1730     case MSVCRT__SH_DENYWR:
1731       sharing = FILE_SHARE_READ;
1732       break;
1733     case MSVCRT__SH_DENYRD:
1734       sharing = FILE_SHARE_WRITE;
1735       break;
1736     case MSVCRT__SH_DENYNO:
1737       sharing = FILE_SHARE_READ | FILE_SHARE_WRITE;
1738       break;
1739     default:
1740       ERR( "Unhandled shflags 0x%x\n", shflags );
1741       return MSVCRT_EINVAL;
1742   }
1743   attrib = FILE_ATTRIBUTE_NORMAL;
1744
1745   if (oflags & MSVCRT__O_TEMPORARY)
1746   {
1747       attrib |= FILE_FLAG_DELETE_ON_CLOSE;
1748       access |= DELETE;
1749       sharing |= FILE_SHARE_DELETE;
1750   }
1751
1752   sa.nLength              = sizeof( SECURITY_ATTRIBUTES );
1753   sa.lpSecurityDescriptor = NULL;
1754   sa.bInheritHandle       = (oflags & MSVCRT__O_NOINHERIT) ? FALSE : TRUE;
1755
1756   hand = CreateFileA(path, access, sharing, &sa, creation, attrib, 0);
1757   if (hand == INVALID_HANDLE_VALUE)  {
1758     WARN(":failed-last error (%d)\n", GetLastError());
1759     msvcrt_set_errno(GetLastError());
1760     return *MSVCRT__errno();
1761   }
1762
1763   *fd = msvcrt_alloc_fd(hand, wxflag);
1764
1765   TRACE(":fd (%d) handle (%p)\n", *fd, hand);
1766   return 0;
1767 }
1768
1769 /*********************************************************************
1770  *              _sopen (MSVCRT.@)
1771  */
1772 int CDECL MSVCRT__sopen( const char *path, int oflags, int shflags, ... )
1773 {
1774   int pmode;
1775   int fd;
1776
1777   if (oflags & MSVCRT__O_CREAT)
1778   {
1779     __ms_va_list ap;
1780
1781     __ms_va_start(ap, shflags);
1782     pmode = va_arg(ap, int);
1783     __ms_va_end(ap);
1784   }
1785   else
1786     pmode = 0;
1787
1788   MSVCRT__sopen_s(&fd, path, oflags, shflags, pmode);
1789   return fd;
1790 }
1791
1792 /*********************************************************************
1793  *              _wsopen_s (MSVCRT.@)
1794  */
1795 int CDECL MSVCRT__wsopen_s( int *fd, const MSVCRT_wchar_t* path, int oflags, int shflags, int pmode )
1796 {
1797   DWORD access = 0, creation = 0, attrib;
1798   SECURITY_ATTRIBUTES sa;
1799   DWORD sharing;
1800   int wxflag;
1801   HANDLE hand;
1802
1803   TRACE("fd*: %p :file (%s) oflags: 0x%04x shflags: 0x%04x pmode: 0x%04x\n",
1804         fd, debugstr_w(path), oflags, shflags, pmode);
1805
1806   if (!fd)
1807   {
1808     MSVCRT_INVALID_PMT("null out fd pointer");
1809     *MSVCRT__errno() = MSVCRT_EINVAL;
1810     return MSVCRT_EINVAL;
1811   }
1812
1813   *fd = -1;
1814   wxflag = split_oflags(oflags);
1815   switch (oflags & (MSVCRT__O_RDONLY | MSVCRT__O_WRONLY | MSVCRT__O_RDWR))
1816   {
1817   case MSVCRT__O_RDONLY: access |= GENERIC_READ; break;
1818   case MSVCRT__O_WRONLY: access |= GENERIC_WRITE; break;
1819   case MSVCRT__O_RDWR:   access |= GENERIC_WRITE | GENERIC_READ; break;
1820   }
1821
1822   if (oflags & MSVCRT__O_CREAT)
1823   {
1824     if(pmode & ~(MSVCRT__S_IREAD | MSVCRT__S_IWRITE))
1825       FIXME(": pmode 0x%04x ignored\n", pmode);
1826     else
1827       WARN(": pmode 0x%04x ignored\n", pmode);
1828
1829     if (oflags & MSVCRT__O_EXCL)
1830       creation = CREATE_NEW;
1831     else if (oflags & MSVCRT__O_TRUNC)
1832       creation = CREATE_ALWAYS;
1833     else
1834       creation = OPEN_ALWAYS;
1835   }
1836   else  /* no MSVCRT__O_CREAT */
1837   {
1838     if (oflags & MSVCRT__O_TRUNC)
1839       creation = TRUNCATE_EXISTING;
1840     else
1841       creation = OPEN_EXISTING;
1842   }
1843
1844   switch( shflags )
1845   {
1846     case MSVCRT__SH_DENYRW:
1847       sharing = 0L;
1848       break;
1849     case MSVCRT__SH_DENYWR:
1850       sharing = FILE_SHARE_READ;
1851       break;
1852     case MSVCRT__SH_DENYRD:
1853       sharing = FILE_SHARE_WRITE;
1854       break;
1855     case MSVCRT__SH_DENYNO:
1856       sharing = FILE_SHARE_READ | FILE_SHARE_WRITE;
1857       break;
1858     default:
1859       ERR( "Unhandled shflags 0x%x\n", shflags );
1860       return MSVCRT_EINVAL;
1861   }
1862   attrib = FILE_ATTRIBUTE_NORMAL;
1863
1864   if (oflags & MSVCRT__O_TEMPORARY)
1865   {
1866       attrib |= FILE_FLAG_DELETE_ON_CLOSE;
1867       access |= DELETE;
1868       sharing |= FILE_SHARE_DELETE;
1869   }
1870
1871   sa.nLength              = sizeof( SECURITY_ATTRIBUTES );
1872   sa.lpSecurityDescriptor = NULL;
1873   sa.bInheritHandle       = (oflags & MSVCRT__O_NOINHERIT) ? FALSE : TRUE;
1874
1875   hand = CreateFileW(path, access, sharing, &sa, creation, attrib, 0);
1876
1877   if (hand == INVALID_HANDLE_VALUE)  {
1878     WARN(":failed-last error (%d)\n",GetLastError());
1879     msvcrt_set_errno(GetLastError());
1880     msvcrt_set_errno(GetLastError());
1881     return *MSVCRT__errno();
1882   }
1883
1884   *fd = msvcrt_alloc_fd(hand, wxflag);
1885
1886   TRACE(":fd (%d) handle (%p)\n", *fd, hand);
1887   return 0;
1888 }
1889
1890 /*********************************************************************
1891  *              _wsopen (MSVCRT.@)
1892  */
1893 int CDECL MSVCRT__wsopen( const MSVCRT_wchar_t *path, int oflags, int shflags, ... )
1894 {
1895   int pmode;
1896   int fd;
1897
1898   if (oflags & MSVCRT__O_CREAT)
1899   {
1900     __ms_va_list ap;
1901
1902     __ms_va_start(ap, shflags);
1903     pmode = va_arg(ap, int);
1904     __ms_va_end(ap);
1905   }
1906   else
1907     pmode = 0;
1908
1909   MSVCRT__wsopen_s(&fd, path, oflags, shflags, pmode);
1910   return fd;
1911 }
1912
1913 /*********************************************************************
1914  *              _open (MSVCRT.@)
1915  */
1916 int CDECL MSVCRT__open( const char *path, int flags, ... )
1917 {
1918   __ms_va_list ap;
1919
1920   if (flags & MSVCRT__O_CREAT)
1921   {
1922     int pmode;
1923     __ms_va_start(ap, flags);
1924     pmode = va_arg(ap, int);
1925     __ms_va_end(ap);
1926     return MSVCRT__sopen( path, flags, MSVCRT__SH_DENYNO, pmode );
1927   }
1928   else
1929     return MSVCRT__sopen( path, flags, MSVCRT__SH_DENYNO);
1930 }
1931
1932 /*********************************************************************
1933  *              _wopen (MSVCRT.@)
1934  */
1935 int CDECL _wopen(const MSVCRT_wchar_t *path,int flags,...)
1936 {
1937   __ms_va_list ap;
1938
1939   if (flags & MSVCRT__O_CREAT)
1940   {
1941     int pmode;
1942     __ms_va_start(ap, flags);
1943     pmode = va_arg(ap, int);
1944     __ms_va_end(ap);
1945     return MSVCRT__wsopen( path, flags, MSVCRT__SH_DENYNO, pmode );
1946   }
1947   else
1948     return MSVCRT__wsopen( path, flags, MSVCRT__SH_DENYNO);
1949 }
1950
1951 /*********************************************************************
1952  *              _creat (MSVCRT.@)
1953  */
1954 int CDECL MSVCRT__creat(const char *path, int flags)
1955 {
1956   int usedFlags = (flags & MSVCRT__O_TEXT)| MSVCRT__O_CREAT| MSVCRT__O_WRONLY| MSVCRT__O_TRUNC;
1957   return MSVCRT__open(path, usedFlags);
1958 }
1959
1960 /*********************************************************************
1961  *              _wcreat (MSVCRT.@)
1962  */
1963 int CDECL _wcreat(const MSVCRT_wchar_t *path, int flags)
1964 {
1965   int usedFlags = (flags & MSVCRT__O_TEXT)| MSVCRT__O_CREAT| MSVCRT__O_WRONLY| MSVCRT__O_TRUNC;
1966   return _wopen(path, usedFlags);
1967 }
1968
1969 /*********************************************************************
1970  *              _open_osfhandle (MSVCRT.@)
1971  */
1972 int CDECL _open_osfhandle(MSVCRT_intptr_t handle, int oflags)
1973 {
1974   int fd;
1975
1976   /* MSVCRT__O_RDONLY (0) always matches, so set the read flag
1977    * MFC's CStdioFile clears O_RDONLY (0)! if it wants to write to the
1978    * file, so set the write flag. It also only sets MSVCRT__O_TEXT if it wants
1979    * text - it never sets MSVCRT__O_BINARY.
1980    */
1981   /* don't let split_oflags() decide the mode if no mode is passed */
1982   if (!(oflags & (MSVCRT__O_BINARY | MSVCRT__O_TEXT)))
1983       oflags |= MSVCRT__O_BINARY;
1984
1985   fd = msvcrt_alloc_fd((HANDLE)handle, split_oflags(oflags));
1986   TRACE(":handle (%ld) fd (%d) flags 0x%08x\n", handle, fd, oflags);
1987   return fd;
1988 }
1989
1990 /*********************************************************************
1991  *              _rmtmp (MSVCRT.@)
1992  */
1993 int CDECL _rmtmp(void)
1994 {
1995   int num_removed = 0, i;
1996   MSVCRT_FILE *file;
1997
1998   LOCK_FILES();
1999   for (i = 3; i < MSVCRT_stream_idx; i++) {
2000     file = msvcrt_get_file(i);
2001
2002     if (file->_tmpfname)
2003     {
2004       MSVCRT_fclose(file);
2005       num_removed++;
2006     }
2007   }
2008   UNLOCK_FILES();
2009
2010   if (num_removed)
2011     TRACE(":removed (%d) temp files\n",num_removed);
2012   return num_removed;
2013 }
2014
2015 /*********************************************************************
2016  * (internal) read_i
2017  *
2018  * When reading \r as last character in text mode, read() positions
2019  * the file pointer on the \r character while getc() goes on to
2020  * the following \n
2021  */
2022 static int read_i(int fd, void *buf, unsigned int count)
2023 {
2024   DWORD num_read;
2025   char *bufstart = buf;
2026   HANDLE hand = msvcrt_fdtoh(fd);
2027   ioinfo *fdinfo = msvcrt_get_ioinfo(fd);
2028
2029   if (count == 0)
2030     return 0;
2031
2032   if (fdinfo->wxflag & WX_READEOF) {
2033      fdinfo->wxflag |= WX_ATEOF;
2034      TRACE("already at EOF, returning 0\n");
2035      return 0;
2036   }
2037   /* Don't trace small reads, it gets *very* annoying */
2038   if (count > 4)
2039     TRACE(":fd (%d) handle (%p) buf (%p) len (%d)\n",fd,hand,buf,count);
2040   if (hand == INVALID_HANDLE_VALUE)
2041     return -1;
2042
2043   /* Reading single bytes in O_TEXT mode makes things slow
2044    * So read big chunks
2045    */
2046     if (ReadFile(hand, bufstart, count, &num_read, NULL))
2047     {
2048         if (count != 0 && num_read == 0)
2049         {
2050             fdinfo->wxflag |= (WX_ATEOF|WX_READEOF);
2051             TRACE(":EOF %s\n",debugstr_an(buf,num_read));
2052         }
2053         else if (fdinfo->wxflag & WX_TEXT)
2054         {
2055             DWORD i, j;
2056             if (bufstart[num_read-1] == '\r')
2057             {
2058                 if(count == 1)
2059                 {
2060                     fdinfo->wxflag  &=  ~WX_READCR;
2061                     ReadFile(hand, bufstart, 1, &num_read, NULL);
2062                 }
2063                 else
2064                 {
2065                     fdinfo->wxflag  |= WX_READCR;
2066                     num_read--;
2067                 }
2068             }
2069             else
2070               fdinfo->wxflag  &=  ~WX_READCR;
2071             for (i=0, j=0; i<num_read; i++)
2072             {
2073                 /* in text mode, a ctrl-z signals EOF */
2074                 if (bufstart[i] == 0x1a)
2075                 {
2076                     fdinfo->wxflag |= (WX_ATEOF|WX_READEOF);
2077                     TRACE(":^Z EOF %s\n",debugstr_an(buf,num_read));
2078                     break;
2079                 }
2080                 /* in text mode, strip \r if followed by \n.
2081                  * BUG: should save state across calls somehow, so CR LF that
2082                  * straddles buffer boundary gets recognized properly?
2083                  */
2084                 if ((bufstart[i] != '\r')
2085                 ||  ((i+1) < num_read && bufstart[i+1] != '\n'))
2086                     bufstart[j++] = bufstart[i];
2087             }
2088             num_read = j;
2089         }
2090     }
2091     else
2092     {
2093         if (GetLastError() == ERROR_BROKEN_PIPE)
2094         {
2095             TRACE(":end-of-pipe\n");
2096             fdinfo->wxflag |= (WX_ATEOF|WX_READEOF);
2097             return 0;
2098         }
2099         else
2100         {
2101             TRACE(":failed-last error (%d)\n",GetLastError());
2102             return -1;
2103         }
2104     }
2105
2106   if (count > 4)
2107       TRACE("(%u), %s\n",num_read,debugstr_an(buf, num_read));
2108   return num_read;
2109 }
2110
2111 /*********************************************************************
2112  *              _read (MSVCRT.@)
2113  */
2114 int CDECL MSVCRT__read(int fd, void *buf, unsigned int count)
2115 {
2116   int num_read;
2117   num_read = read_i(fd, buf, count);
2118   return num_read;
2119 }
2120
2121 /*********************************************************************
2122  *              _setmode (MSVCRT.@)
2123  */
2124 int CDECL _setmode(int fd,int mode)
2125 {
2126   int ret = msvcrt_get_ioinfo(fd)->wxflag & WX_TEXT ? MSVCRT__O_TEXT : MSVCRT__O_BINARY;
2127   if (mode & (~(MSVCRT__O_TEXT|MSVCRT__O_BINARY)))
2128     FIXME("fd (%d) mode (0x%08x) unknown\n",fd,mode);
2129   if ((mode & MSVCRT__O_TEXT) == MSVCRT__O_TEXT)
2130     msvcrt_get_ioinfo(fd)->wxflag |= WX_TEXT;
2131   else
2132     msvcrt_get_ioinfo(fd)->wxflag &= ~WX_TEXT;
2133   return ret;
2134 }
2135
2136 /*********************************************************************
2137  *              _stat64 (MSVCRT.@)
2138  */
2139 int CDECL MSVCRT_stat64(const char* path, struct MSVCRT__stat64 * buf)
2140 {
2141   DWORD dw;
2142   WIN32_FILE_ATTRIBUTE_DATA hfi;
2143   unsigned short mode = ALL_S_IREAD;
2144   int plen;
2145
2146   TRACE(":file (%s) buf(%p)\n",path,buf);
2147
2148   if (!GetFileAttributesExA(path, GetFileExInfoStandard, &hfi))
2149   {
2150       TRACE("failed (%d)\n",GetLastError());
2151       msvcrt_set_errno(ERROR_FILE_NOT_FOUND);
2152       return -1;
2153   }
2154
2155   memset(buf,0,sizeof(struct MSVCRT__stat64));
2156
2157   /* FIXME: rdev isn't drive num, despite what the docs say-what is it?
2158      Bon 011120: This FIXME seems incorrect
2159                  Also a letter as first char isn't enough to be classified
2160                  as a drive letter
2161   */
2162   if (isalpha(*path)&& (*(path+1)==':'))
2163     buf->st_dev = buf->st_rdev = toupper(*path) - 'A'; /* drive num */
2164   else
2165     buf->st_dev = buf->st_rdev = _getdrive() - 1;
2166
2167   plen = strlen(path);
2168
2169   /* Dir, or regular file? */
2170   if ((hfi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ||
2171       (path[plen-1] == '\\'))
2172     mode |= (MSVCRT__S_IFDIR | ALL_S_IEXEC);
2173   else
2174   {
2175     mode |= MSVCRT__S_IFREG;
2176     /* executable? */
2177     if (plen > 6 && path[plen-4] == '.')  /* shortest exe: "\x.exe" */
2178     {
2179       unsigned int ext = tolower(path[plen-1]) | (tolower(path[plen-2]) << 8) |
2180                                  (tolower(path[plen-3]) << 16);
2181       if (ext == EXE || ext == BAT || ext == CMD || ext == COM)
2182           mode |= ALL_S_IEXEC;
2183     }
2184   }
2185
2186   if (!(hfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY))
2187     mode |= ALL_S_IWRITE;
2188
2189   buf->st_mode  = mode;
2190   buf->st_nlink = 1;
2191   buf->st_size  = ((__int64)hfi.nFileSizeHigh << 32) + hfi.nFileSizeLow;
2192   RtlTimeToSecondsSince1970((LARGE_INTEGER *)&hfi.ftLastAccessTime, &dw);
2193   buf->st_atime = dw;
2194   RtlTimeToSecondsSince1970((LARGE_INTEGER *)&hfi.ftLastWriteTime, &dw);
2195   buf->st_mtime = buf->st_ctime = dw;
2196   TRACE("%d %d 0x%08x%08x %d %d %d\n", buf->st_mode,buf->st_nlink,
2197         (int)(buf->st_size >> 32),(int)buf->st_size,
2198         (int)buf->st_atime,(int)buf->st_mtime,(int)buf->st_ctime);
2199   return 0;
2200 }
2201
2202 /*********************************************************************
2203  *              _stati64 (MSVCRT.@)
2204  */
2205 int CDECL MSVCRT_stati64(const char* path, struct MSVCRT__stati64 * buf)
2206 {
2207   int ret;
2208   struct MSVCRT__stat64 buf64;
2209
2210   ret = MSVCRT_stat64(path, &buf64);
2211   if (!ret)
2212     msvcrt_stat64_to_stati64(&buf64, buf);
2213   return ret;
2214 }
2215
2216 /*********************************************************************
2217  *              _stat (MSVCRT.@)
2218  */
2219 int CDECL MSVCRT_stat(const char* path, struct MSVCRT__stat * buf)
2220 { int ret;
2221   struct MSVCRT__stat64 buf64;
2222
2223   ret = MSVCRT_stat64( path, &buf64);
2224   if (!ret)
2225       msvcrt_stat64_to_stat(&buf64, buf);
2226   return ret;
2227 }
2228
2229 /*********************************************************************
2230  *              _wstat64 (MSVCRT.@)
2231  */
2232 int CDECL MSVCRT__wstat64(const MSVCRT_wchar_t* path, struct MSVCRT__stat64 * buf)
2233 {
2234   DWORD dw;
2235   WIN32_FILE_ATTRIBUTE_DATA hfi;
2236   unsigned short mode = ALL_S_IREAD;
2237   int plen;
2238
2239   TRACE(":file (%s) buf(%p)\n",debugstr_w(path),buf);
2240
2241   if (!GetFileAttributesExW(path, GetFileExInfoStandard, &hfi))
2242   {
2243       TRACE("failed (%d)\n",GetLastError());
2244       msvcrt_set_errno(ERROR_FILE_NOT_FOUND);
2245       return -1;
2246   }
2247
2248   memset(buf,0,sizeof(struct MSVCRT__stat64));
2249
2250   /* FIXME: rdev isn't drive num, despite what the docs says-what is it? */
2251   if (MSVCRT_iswalpha(*path))
2252     buf->st_dev = buf->st_rdev = toupperW(*path - 'A'); /* drive num */
2253   else
2254     buf->st_dev = buf->st_rdev = _getdrive() - 1;
2255
2256   plen = strlenW(path);
2257
2258   /* Dir, or regular file? */
2259   if ((hfi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ||
2260       (path[plen-1] == '\\'))
2261     mode |= (MSVCRT__S_IFDIR | ALL_S_IEXEC);
2262   else
2263   {
2264     mode |= MSVCRT__S_IFREG;
2265     /* executable? */
2266     if (plen > 6 && path[plen-4] == '.')  /* shortest exe: "\x.exe" */
2267     {
2268       ULONGLONG ext = tolowerW(path[plen-1]) | (tolowerW(path[plen-2]) << 16) |
2269                                ((ULONGLONG)tolowerW(path[plen-3]) << 32);
2270       if (ext == WCEXE || ext == WCBAT || ext == WCCMD || ext == WCCOM)
2271         mode |= ALL_S_IEXEC;
2272     }
2273   }
2274
2275   if (!(hfi.dwFileAttributes & FILE_ATTRIBUTE_READONLY))
2276     mode |= ALL_S_IWRITE;
2277
2278   buf->st_mode  = mode;
2279   buf->st_nlink = 1;
2280   buf->st_size  = ((__int64)hfi.nFileSizeHigh << 32) + hfi.nFileSizeLow;
2281   RtlTimeToSecondsSince1970((LARGE_INTEGER *)&hfi.ftLastAccessTime, &dw);
2282   buf->st_atime = dw;
2283   RtlTimeToSecondsSince1970((LARGE_INTEGER *)&hfi.ftLastWriteTime, &dw);
2284   buf->st_mtime = buf->st_ctime = dw;
2285   TRACE("%d %d 0x%08x%08x %d %d %d\n", buf->st_mode,buf->st_nlink,
2286         (int)(buf->st_size >> 32),(int)buf->st_size,
2287         (int)buf->st_atime,(int)buf->st_mtime,(int)buf->st_ctime);
2288   return 0;
2289 }
2290
2291 /*********************************************************************
2292  *              _wstati64 (MSVCRT.@)
2293  */
2294 int CDECL MSVCRT__wstati64(const MSVCRT_wchar_t* path, struct MSVCRT__stati64 * buf)
2295 {
2296   int ret;
2297   struct MSVCRT__stat64 buf64;
2298
2299   ret = MSVCRT__wstat64(path, &buf64);
2300   if (!ret)
2301     msvcrt_stat64_to_stati64(&buf64, buf);
2302   return ret;
2303 }
2304
2305 /*********************************************************************
2306  *              _wstat (MSVCRT.@)
2307  */
2308 int CDECL MSVCRT__wstat(const MSVCRT_wchar_t* path, struct MSVCRT__stat * buf)
2309 {
2310   int ret;
2311   struct MSVCRT__stat64 buf64;
2312
2313   ret = MSVCRT__wstat64( path, &buf64 );
2314   if (!ret) msvcrt_stat64_to_stat(&buf64, buf);
2315   return ret;
2316 }
2317
2318 /*********************************************************************
2319  *              _tell (MSVCRT.@)
2320  */
2321 MSVCRT_long CDECL MSVCRT__tell(int fd)
2322 {
2323   return MSVCRT__lseek(fd, 0, SEEK_CUR);
2324 }
2325
2326 /*********************************************************************
2327  *              _telli64 (MSVCRT.@)
2328  */
2329 __int64 CDECL _telli64(int fd)
2330 {
2331   return MSVCRT__lseeki64(fd, 0, SEEK_CUR);
2332 }
2333
2334 /*********************************************************************
2335  *              _tempnam (MSVCRT.@)
2336  */
2337 char * CDECL _tempnam(const char *dir, const char *prefix)
2338 {
2339   char tmpbuf[MAX_PATH];
2340   const char *tmp_dir = MSVCRT_getenv("TMP");
2341
2342   if (tmp_dir) dir = tmp_dir;
2343
2344   TRACE("dir (%s) prefix (%s)\n",dir,prefix);
2345   if (GetTempFileNameA(dir,prefix,0,tmpbuf))
2346   {
2347     TRACE("got name (%s)\n",tmpbuf);
2348     DeleteFileA(tmpbuf);
2349     return _strdup(tmpbuf);
2350   }
2351   TRACE("failed (%d)\n",GetLastError());
2352   return NULL;
2353 }
2354
2355 /*********************************************************************
2356  *              _wtempnam (MSVCRT.@)
2357  */
2358 MSVCRT_wchar_t * CDECL _wtempnam(const MSVCRT_wchar_t *dir, const MSVCRT_wchar_t *prefix)
2359 {
2360   MSVCRT_wchar_t tmpbuf[MAX_PATH];
2361
2362   TRACE("dir (%s) prefix (%s)\n",debugstr_w(dir),debugstr_w(prefix));
2363   if (GetTempFileNameW(dir,prefix,0,tmpbuf))
2364   {
2365     TRACE("got name (%s)\n",debugstr_w(tmpbuf));
2366     DeleteFileW(tmpbuf);
2367     return _wcsdup(tmpbuf);
2368   }
2369   TRACE("failed (%d)\n",GetLastError());
2370   return NULL;
2371 }
2372
2373 /*********************************************************************
2374  *              _umask (MSVCRT.@)
2375  */
2376 int CDECL MSVCRT__umask(int umask)
2377 {
2378   int old_umask = MSVCRT_umask;
2379   TRACE("(%d)\n",umask);
2380   MSVCRT_umask = umask;
2381   return old_umask;
2382 }
2383
2384 /*********************************************************************
2385  *              _utime64 (MSVCRT.@)
2386  */
2387 int CDECL _utime64(const char* path, struct MSVCRT___utimbuf64 *t)
2388 {
2389   int fd = MSVCRT__open(path, MSVCRT__O_WRONLY | MSVCRT__O_BINARY);
2390
2391   if (fd > 0)
2392   {
2393     int retVal = _futime64(fd, t);
2394     MSVCRT__close(fd);
2395     return retVal;
2396   }
2397   return -1;
2398 }
2399
2400 /*********************************************************************
2401  *              _utime32 (MSVCRT.@)
2402  */
2403 int CDECL _utime32(const char* path, struct MSVCRT___utimbuf32 *t)
2404 {
2405     struct MSVCRT___utimbuf64 t64;
2406     t64.actime = t->actime;
2407     t64.modtime = t->modtime;
2408     return _utime64( path, &t64 );
2409 }
2410
2411 /*********************************************************************
2412  *              _utime (MSVCRT.@)
2413  */
2414 #ifdef _WIN64
2415 int CDECL _utime(const char* path, struct MSVCRT___utimbuf64 *t)
2416 {
2417     return _utime64( path, t );
2418 }
2419 #else
2420 int CDECL _utime(const char* path, struct MSVCRT___utimbuf32 *t)
2421 {
2422     return _utime32( path, t );
2423 }
2424 #endif
2425
2426 /*********************************************************************
2427  *              _wutime64 (MSVCRT.@)
2428  */
2429 int CDECL _wutime64(const MSVCRT_wchar_t* path, struct MSVCRT___utimbuf64 *t)
2430 {
2431   int fd = _wopen(path, MSVCRT__O_WRONLY | MSVCRT__O_BINARY);
2432
2433   if (fd > 0)
2434   {
2435     int retVal = _futime64(fd, t);
2436     MSVCRT__close(fd);
2437     return retVal;
2438   }
2439   return -1;
2440 }
2441
2442 /*********************************************************************
2443  *              _wutime32 (MSVCRT.@)
2444  */
2445 int CDECL _wutime32(const MSVCRT_wchar_t* path, struct MSVCRT___utimbuf32 *t)
2446 {
2447     struct MSVCRT___utimbuf64 t64;
2448     t64.actime = t->actime;
2449     t64.modtime = t->modtime;
2450     return _wutime64( path, &t64 );
2451 }
2452
2453 /*********************************************************************
2454  *              _wutime (MSVCRT.@)
2455  */
2456 #ifdef _WIN64
2457 int CDECL _wutime(const MSVCRT_wchar_t* path, struct MSVCRT___utimbuf64 *t)
2458 {
2459     return _wutime64( path, t );
2460 }
2461 #else
2462 int CDECL _wutime(const MSVCRT_wchar_t* path, struct MSVCRT___utimbuf32 *t)
2463 {
2464     return _wutime32( path, t );
2465 }
2466 #endif
2467
2468 /*********************************************************************
2469  *              _write (MSVCRT.@)
2470  */
2471 int CDECL MSVCRT__write(int fd, const void* buf, unsigned int count)
2472 {
2473   DWORD num_written;
2474   HANDLE hand = msvcrt_fdtoh(fd);
2475
2476   /* Don't trace small writes, it gets *very* annoying */
2477 #if 0
2478   if (count > 32)
2479     TRACE(":fd (%d) handle (%d) buf (%p) len (%d)\n",fd,hand,buf,count);
2480 #endif
2481   if (hand == INVALID_HANDLE_VALUE)
2482     {
2483       *MSVCRT__errno() = MSVCRT_EBADF;
2484       return -1;
2485     }
2486
2487   /* If appending, go to EOF */
2488   if (msvcrt_get_ioinfo(fd)->wxflag & WX_APPEND)
2489     MSVCRT__lseek(fd, 0, FILE_END);
2490
2491   if (!(msvcrt_get_ioinfo(fd)->wxflag & WX_TEXT))
2492     {
2493       if (WriteFile(hand, buf, count, &num_written, NULL)
2494           &&  (num_written == count))
2495         return num_written;
2496       TRACE("WriteFile (fd %d, hand %p) failed-last error (%d)\n", fd,
2497        hand, GetLastError());
2498       *MSVCRT__errno() = MSVCRT_ENOSPC;
2499     }
2500   else
2501   {
2502       unsigned int i, j, nr_lf;
2503       char *p = NULL;
2504       const char *q;
2505       const char *s = buf, *buf_start = buf;
2506       /* find number of \n ( without preceding \r ) */
2507       for ( nr_lf=0,i = 0; i <count; i++)
2508       {
2509           if (s[i]== '\n')
2510           {
2511               nr_lf++;
2512               /*if ((i >1) && (s[i-1] == '\r')) nr_lf--; */
2513           }
2514       }
2515       if (nr_lf)
2516       {
2517           if ((q = p = MSVCRT_malloc(count + nr_lf)))
2518           {
2519               for (s = buf, i = 0, j = 0; i < count; i++)
2520               {
2521                   if (s[i]== '\n')
2522                   {
2523                       p[j++] = '\r';
2524                       /*if ((i >1) && (s[i-1] == '\r'))j--;*/
2525                   }
2526                   p[j++] = s[i];
2527               }
2528           }
2529           else
2530           {
2531               FIXME("Malloc failed\n");
2532               nr_lf =0;
2533               q = buf;
2534           }
2535       }
2536       else
2537           q = buf;
2538
2539       if ((WriteFile(hand, q, count+nr_lf, &num_written, NULL) == 0 ) || (num_written != count+nr_lf))
2540       {
2541           TRACE("WriteFile (fd %d, hand %p) failed-last error (%d), num_written %d\n",
2542            fd, hand, GetLastError(), num_written);
2543           *MSVCRT__errno() = MSVCRT_ENOSPC;
2544           if(nr_lf)
2545               MSVCRT_free(p);
2546           return s - buf_start;
2547       }
2548       else
2549       {
2550           if(nr_lf)
2551               MSVCRT_free(p);
2552           return count;
2553       }
2554   }
2555   return -1;
2556 }
2557
2558 /*********************************************************************
2559  *              _putw (MSVCRT.@)
2560  */
2561 int CDECL MSVCRT__putw(int val, MSVCRT_FILE* file)
2562 {
2563   int len;
2564
2565   MSVCRT__lock_file(file);
2566   len = MSVCRT__write(file->_file, &val, sizeof(val));
2567   if (len == sizeof(val)) {
2568     MSVCRT__unlock_file(file);
2569     return val;
2570   }
2571
2572   file->_flag |= MSVCRT__IOERR;
2573   MSVCRT__unlock_file(file);
2574   return MSVCRT_EOF;
2575 }
2576
2577 /*********************************************************************
2578  *              fclose (MSVCRT.@)
2579  */
2580 int CDECL MSVCRT_fclose(MSVCRT_FILE* file)
2581 {
2582   int r, flag;
2583
2584   MSVCRT__lock_file(file);
2585   flag = file->_flag;
2586   MSVCRT_free(file->_tmpfname);
2587   file->_tmpfname = NULL;
2588   /* flush stdio buffers */
2589   if(file->_flag & MSVCRT__IOWRT)
2590       MSVCRT_fflush(file);
2591   if(file->_flag & MSVCRT__IOMYBUF)
2592       MSVCRT_free(file->_base);
2593
2594   r=MSVCRT__close(file->_file);
2595
2596   file->_flag = 0;
2597   MSVCRT__unlock_file(file);
2598   if(file<MSVCRT__iob || file>=MSVCRT__iob+_IOB_ENTRIES)
2599       DeleteCriticalSection(&((file_crit*)file)->crit);
2600
2601   if(file == msvcrt_get_file(MSVCRT_stream_idx-1)) {
2602     while(MSVCRT_stream_idx>3 && !file->_flag) {
2603       MSVCRT_stream_idx--;
2604       file = msvcrt_get_file(MSVCRT_stream_idx-1);
2605     }
2606   }
2607
2608   return ((r == -1) || (flag & MSVCRT__IOERR) ? MSVCRT_EOF : 0);
2609 }
2610
2611 /*********************************************************************
2612  *              feof (MSVCRT.@)
2613  */
2614 int CDECL MSVCRT_feof(MSVCRT_FILE* file)
2615 {
2616     int ret;
2617
2618     MSVCRT__lock_file(file);
2619     ret = file->_flag & MSVCRT__IOEOF;
2620     MSVCRT__unlock_file(file);
2621
2622     return ret;
2623 }
2624
2625 /*********************************************************************
2626  *              ferror (MSVCRT.@)
2627  */
2628 int CDECL MSVCRT_ferror(MSVCRT_FILE* file)
2629 {
2630     int ret;
2631
2632     MSVCRT__lock_file(file);
2633     ret = file->_flag & MSVCRT__IOERR;
2634     MSVCRT__unlock_file(file);
2635
2636     return ret;
2637 }
2638
2639 /*********************************************************************
2640  *              _filbuf (MSVCRT.@)
2641  */
2642 int CDECL MSVCRT__filbuf(MSVCRT_FILE* file)
2643 {
2644     unsigned char c;
2645     MSVCRT__lock_file(file);
2646
2647     /* Allocate buffer if needed */
2648     if(file->_bufsiz == 0 && !(file->_flag & MSVCRT__IONBF))
2649         msvcrt_alloc_buffer(file);
2650
2651     if(!(file->_flag & MSVCRT__IOREAD)) {
2652         if(file->_flag & MSVCRT__IORW)
2653             file->_flag |= MSVCRT__IOREAD;
2654         else {
2655             MSVCRT__unlock_file(file);
2656             return MSVCRT_EOF;
2657         }
2658     }
2659
2660     if(file->_flag & MSVCRT__IONBF) {
2661         int r;
2662         if ((r = read_i(file->_file,&c,1)) != 1) {
2663             file->_flag |= (r == 0) ? MSVCRT__IOEOF : MSVCRT__IOERR;
2664             MSVCRT__unlock_file(file);
2665             return MSVCRT_EOF;
2666         }
2667
2668         MSVCRT__unlock_file(file);
2669         return c;
2670     } else {
2671         file->_cnt = read_i(file->_file, file->_base, file->_bufsiz);
2672         if(file->_cnt<=0) {
2673             file->_flag |= (file->_cnt == 0) ? MSVCRT__IOEOF : MSVCRT__IOERR;
2674             file->_cnt = 0;
2675             MSVCRT__unlock_file(file);
2676             return MSVCRT_EOF;
2677         }
2678
2679         file->_cnt--;
2680         file->_ptr = file->_base+1;
2681         c = *(unsigned char *)file->_base;
2682         MSVCRT__unlock_file(file);
2683         return c;
2684     }
2685 }
2686
2687 /*********************************************************************
2688  *              fgetc (MSVCRT.@)
2689  */
2690 int CDECL MSVCRT_fgetc(MSVCRT_FILE* file)
2691 {
2692   unsigned char *i;
2693   unsigned int j;
2694
2695   MSVCRT__lock_file(file);
2696   if (file->_cnt>0) {
2697     file->_cnt--;
2698     i = (unsigned char *)file->_ptr++;
2699     j = *i;
2700   } else
2701     j = MSVCRT__filbuf(file);
2702
2703   MSVCRT__unlock_file(file);
2704   return j;
2705 }
2706
2707 /*********************************************************************
2708  *              _fgetchar (MSVCRT.@)
2709  */
2710 int CDECL _fgetchar(void)
2711 {
2712   return MSVCRT_fgetc(MSVCRT_stdin);
2713 }
2714
2715 /*********************************************************************
2716  *              fgets (MSVCRT.@)
2717  */
2718 char * CDECL MSVCRT_fgets(char *s, int size, MSVCRT_FILE* file)
2719 {
2720   int    cc = MSVCRT_EOF;
2721   char * buf_start = s;
2722
2723   TRACE(":file(%p) fd (%d) str (%p) len (%d)\n",
2724         file,file->_file,s,size);
2725
2726   MSVCRT__lock_file(file);
2727
2728   while ((size >1) && (cc = MSVCRT_fgetc(file)) != MSVCRT_EOF && cc != '\n')
2729     {
2730       *s++ = (char)cc;
2731       size --;
2732     }
2733   if ((cc == MSVCRT_EOF) && (s == buf_start)) /* If nothing read, return 0*/
2734   {
2735     TRACE(":nothing read\n");
2736     MSVCRT__unlock_file(file);
2737     return NULL;
2738   }
2739   if ((cc != MSVCRT_EOF) && (size > 1))
2740     *s++ = cc;
2741   *s = '\0';
2742   TRACE(":got %s\n", debugstr_a(buf_start));
2743   MSVCRT__unlock_file(file);
2744   return buf_start;
2745 }
2746
2747 /*********************************************************************
2748  *              fgetwc (MSVCRT.@)
2749  *
2750  * In MSVCRT__O_TEXT mode, multibyte characters are read from the file, dropping
2751  * the CR from CR/LF combinations
2752  */
2753 MSVCRT_wint_t CDECL MSVCRT_fgetwc(MSVCRT_FILE* file)
2754 {
2755   int c;
2756
2757   MSVCRT__lock_file(file);
2758   if (!(msvcrt_get_ioinfo(file->_file)->wxflag & WX_TEXT))
2759     {
2760       MSVCRT_wchar_t wc;
2761       unsigned int i;
2762       int j;
2763       char *chp, *wcp;
2764       wcp = (char *)&wc;
2765       for(i=0; i<sizeof(wc); i++)
2766       {
2767         if (file->_cnt>0) 
2768         {
2769           file->_cnt--;
2770           chp = file->_ptr++;
2771           wcp[i] = *chp;
2772         } 
2773         else
2774         {
2775           j = MSVCRT__filbuf(file);
2776           if(file->_cnt<=0)
2777           {
2778             file->_flag |= (file->_cnt == 0) ? MSVCRT__IOEOF : MSVCRT__IOERR;
2779             file->_cnt = 0;
2780
2781             MSVCRT__unlock_file(file);
2782             return MSVCRT_WEOF;
2783           }
2784           wcp[i] = j;
2785         }
2786       }
2787
2788       MSVCRT__unlock_file(file);
2789       return wc;
2790     }
2791     
2792   c = MSVCRT_fgetc(file);
2793   if ((get_locinfo()->mb_cur_max > 1) && MSVCRT_isleadbyte(c))
2794     {
2795       FIXME("Treat Multibyte characters\n");
2796     }
2797
2798   MSVCRT__unlock_file(file);
2799   if (c == MSVCRT_EOF)
2800     return MSVCRT_WEOF;
2801   else
2802     return (MSVCRT_wint_t)c;
2803 }
2804
2805 /*********************************************************************
2806  *              _getw (MSVCRT.@)
2807  */
2808 int CDECL MSVCRT__getw(MSVCRT_FILE* file)
2809 {
2810   char *ch;
2811   int i, k;
2812   unsigned int j;
2813   ch = (char *)&i;
2814
2815   MSVCRT__lock_file(file);
2816   for (j=0; j<sizeof(int); j++) {
2817     k = MSVCRT_fgetc(file);
2818     if (k == MSVCRT_EOF) {
2819       file->_flag |= MSVCRT__IOEOF;
2820       MSVCRT__unlock_file(file);
2821       return EOF;
2822     }
2823     ch[j] = k;
2824   }
2825
2826   MSVCRT__unlock_file(file);
2827   return i;
2828 }
2829
2830 /*********************************************************************
2831  *              getwc (MSVCRT.@)
2832  */
2833 MSVCRT_wint_t CDECL MSVCRT_getwc(MSVCRT_FILE* file)
2834 {
2835   return MSVCRT_fgetwc(file);
2836 }
2837
2838 /*********************************************************************
2839  *              _fgetwchar (MSVCRT.@)
2840  */
2841 MSVCRT_wint_t CDECL _fgetwchar(void)
2842 {
2843   return MSVCRT_fgetwc(MSVCRT_stdin);
2844 }
2845
2846 /*********************************************************************
2847  *              getwchar (MSVCRT.@)
2848  */
2849 MSVCRT_wint_t CDECL MSVCRT_getwchar(void)
2850 {
2851   return _fgetwchar();
2852 }
2853
2854 /*********************************************************************
2855  *              fgetws (MSVCRT.@)
2856  */
2857 MSVCRT_wchar_t * CDECL MSVCRT_fgetws(MSVCRT_wchar_t *s, int size, MSVCRT_FILE* file)
2858 {
2859   int    cc = MSVCRT_WEOF;
2860   MSVCRT_wchar_t * buf_start = s;
2861
2862   TRACE(":file(%p) fd (%d) str (%p) len (%d)\n",
2863         file,file->_file,s,size);
2864
2865   MSVCRT__lock_file(file);
2866
2867   while ((size >1) && (cc = MSVCRT_fgetwc(file)) != MSVCRT_WEOF && cc != '\n')
2868     {
2869       *s++ = (char)cc;
2870       size --;
2871     }
2872   if ((cc == MSVCRT_WEOF) && (s == buf_start)) /* If nothing read, return 0*/
2873   {
2874     TRACE(":nothing read\n");
2875     MSVCRT__unlock_file(file);
2876     return NULL;
2877   }
2878   if ((cc != MSVCRT_WEOF) && (size > 1))
2879     *s++ = cc;
2880   *s = 0;
2881   TRACE(":got %s\n", debugstr_w(buf_start));
2882   MSVCRT__unlock_file(file);
2883   return buf_start;
2884 }
2885
2886 /*********************************************************************
2887  *              fwrite (MSVCRT.@)
2888  */
2889 MSVCRT_size_t CDECL MSVCRT_fwrite(const void *ptr, MSVCRT_size_t size, MSVCRT_size_t nmemb, MSVCRT_FILE* file)
2890 {
2891     MSVCRT_size_t wrcnt=size * nmemb;
2892     int written = 0;
2893     if (size == 0)
2894         return 0;
2895
2896     MSVCRT__lock_file(file);
2897     if(file->_cnt) {
2898         int pcnt=(file->_cnt>wrcnt)? wrcnt: file->_cnt;
2899         memcpy(file->_ptr, ptr, pcnt);
2900         file->_cnt -= pcnt;
2901         file->_ptr += pcnt;
2902         written = pcnt;
2903         wrcnt -= pcnt;
2904         ptr = (const char*)ptr + pcnt;
2905     } else if(!(file->_flag & MSVCRT__IOWRT)) {
2906         if(file->_flag & MSVCRT__IORW) {
2907             file->_flag |= MSVCRT__IOWRT;
2908         } else {
2909             MSVCRT__unlock_file(file);
2910             return 0;
2911         }
2912     }
2913     if(wrcnt) {
2914         /* Flush buffer */
2915         int res=msvcrt_flush_buffer(file);
2916         if(!res) {
2917             int pwritten = MSVCRT__write(file->_file, ptr, wrcnt);
2918             if (pwritten <= 0)
2919             {
2920                 file->_flag |= MSVCRT__IOERR;
2921                 pwritten=0;
2922             }
2923             written += pwritten;
2924         }
2925     }
2926
2927     MSVCRT__unlock_file(file);
2928     return written / size;
2929 }
2930
2931 /*********************************************************************
2932  *              fputwc (MSVCRT.@)
2933  */
2934 MSVCRT_wint_t CDECL MSVCRT_fputwc(MSVCRT_wint_t wc, MSVCRT_FILE* file)
2935 {
2936   MSVCRT_wchar_t mwc=wc;
2937   if (MSVCRT_fwrite( &mwc, sizeof(mwc), 1, file) != 1)
2938     return MSVCRT_WEOF;
2939   return wc;
2940 }
2941
2942 /*********************************************************************
2943  *              _fputwchar (MSVCRT.@)
2944  */
2945 MSVCRT_wint_t CDECL _fputwchar(MSVCRT_wint_t wc)
2946 {
2947   return MSVCRT_fputwc(wc, MSVCRT_stdout);
2948 }
2949
2950 /*********************************************************************
2951  *              _wfsopen (MSVCRT.@)
2952  */
2953 MSVCRT_FILE * CDECL MSVCRT__wfsopen(const MSVCRT_wchar_t *path, const MSVCRT_wchar_t *mode, int share)
2954 {
2955   MSVCRT_FILE* file;
2956   int open_flags, stream_flags, fd;
2957
2958   TRACE("(%s,%s)\n", debugstr_w(path), debugstr_w(mode));
2959
2960   /* map mode string to open() flags. "man fopen" for possibilities. */
2961   if (msvcrt_get_flags(mode, &open_flags, &stream_flags) == -1)
2962       return NULL;
2963
2964   LOCK_FILES();
2965   fd = MSVCRT__wsopen(path, open_flags, share, MSVCRT__S_IREAD | MSVCRT__S_IWRITE);
2966   if (fd < 0)
2967     file = NULL;
2968   else if ((file = msvcrt_alloc_fp()) && msvcrt_init_fp(file, fd, stream_flags)
2969    != -1)
2970     TRACE(":fd (%d) mode (%s) FILE* (%p)\n", fd, debugstr_w(mode), file);
2971   else if (file)
2972   {
2973     file->_flag = 0;
2974     file = NULL;
2975   }
2976
2977   TRACE(":got (%p)\n",file);
2978   if (fd >= 0 && !file)
2979     MSVCRT__close(fd);
2980   UNLOCK_FILES();
2981   return file;
2982 }
2983
2984 /*********************************************************************
2985  *              _fsopen (MSVCRT.@)
2986  */
2987 MSVCRT_FILE * CDECL MSVCRT__fsopen(const char *path, const char *mode, int share)
2988 {
2989     MSVCRT_FILE *ret;
2990     MSVCRT_wchar_t *pathW = NULL, *modeW = NULL;
2991
2992     if (path && !(pathW = msvcrt_wstrdupa(path))) {
2993         MSVCRT__invalid_parameter(NULL, NULL, NULL, 0, 0);
2994         *MSVCRT__errno() = MSVCRT_EINVAL;
2995         return NULL;
2996     }
2997     if (mode && !(modeW = msvcrt_wstrdupa(mode)))
2998     {
2999         MSVCRT_free(pathW);
3000         MSVCRT__invalid_parameter(NULL, NULL, NULL, 0, 0);
3001         *MSVCRT__errno() = MSVCRT_EINVAL;
3002         return NULL;
3003     }
3004
3005     ret = MSVCRT__wfsopen(pathW, modeW, share);
3006
3007     MSVCRT_free(pathW);
3008     MSVCRT_free(modeW);
3009     return ret;
3010 }
3011
3012 /*********************************************************************
3013  *              fopen (MSVCRT.@)
3014  */
3015 MSVCRT_FILE * CDECL MSVCRT_fopen(const char *path, const char *mode)
3016 {
3017     return MSVCRT__fsopen( path, mode, MSVCRT__SH_DENYNO );
3018 }
3019
3020 /*********************************************************************
3021  *              fopen_s (MSVCRT.@)
3022  */
3023 int CDECL MSVCRT_fopen_s(MSVCRT_FILE** pFile,
3024         const char *filename, const char *mode)
3025 {
3026     if (!MSVCRT_CHECK_PMT(pFile != NULL) || !MSVCRT_CHECK_PMT(filename != NULL) ||
3027         !MSVCRT_CHECK_PMT(mode != NULL)) {
3028         *MSVCRT__errno() = MSVCRT_EINVAL;
3029         return MSVCRT_EINVAL;
3030     }
3031
3032     *pFile = MSVCRT_fopen(filename, mode);
3033
3034     if(!*pFile)
3035         return *MSVCRT__errno();
3036     return 0;
3037 }
3038
3039 /*********************************************************************
3040  *              _wfopen (MSVCRT.@)
3041  */
3042 MSVCRT_FILE * CDECL MSVCRT__wfopen(const MSVCRT_wchar_t *path, const MSVCRT_wchar_t *mode)
3043 {
3044     return MSVCRT__wfsopen( path, mode, MSVCRT__SH_DENYNO );
3045 }
3046
3047 /*********************************************************************
3048  *              _wfopen_s (MSVCRT.@)
3049  */
3050 int CDECL MSVCRT__wfopen_s(MSVCRT_FILE** pFile, const MSVCRT_wchar_t *filename,
3051         const MSVCRT_wchar_t *mode)
3052 {
3053     if (!MSVCRT_CHECK_PMT(pFile != NULL) || !MSVCRT_CHECK_PMT(filename != NULL) ||
3054         !MSVCRT_CHECK_PMT(mode != NULL)) {
3055         *MSVCRT__errno() = MSVCRT_EINVAL;
3056         return MSVCRT_EINVAL;
3057     }
3058
3059     *pFile = MSVCRT__wfopen(filename, mode);
3060
3061     if(!*pFile)
3062         return *MSVCRT__errno();
3063     return 0;
3064 }
3065
3066 /* MSVCRT_fputc calls MSVCRT__flsbuf which calls MSVCRT_fputc */
3067 int CDECL MSVCRT__flsbuf(int c, MSVCRT_FILE* file);
3068
3069 /*********************************************************************
3070  *              fputc (MSVCRT.@)
3071  */
3072 int CDECL MSVCRT_fputc(int c, MSVCRT_FILE* file)
3073 {
3074   int res;
3075
3076   MSVCRT__lock_file(file);
3077   if(file->_cnt>0) {
3078     *file->_ptr++=c;
3079     file->_cnt--;
3080     if (c == '\n')
3081     {
3082       res = msvcrt_flush_buffer(file);
3083       MSVCRT__unlock_file(file);
3084       return res ? res : c;
3085     }
3086     else {
3087       MSVCRT__unlock_file(file);
3088       return c & 0xff;
3089     }
3090   } else {
3091     res = MSVCRT__flsbuf(c, file);
3092     MSVCRT__unlock_file(file);
3093     return res;
3094   }
3095 }
3096
3097 /*********************************************************************
3098  *              _flsbuf (MSVCRT.@)
3099  */
3100 int CDECL MSVCRT__flsbuf(int c, MSVCRT_FILE* file)
3101 {
3102     MSVCRT__lock_file(file);
3103
3104     /* Flush output buffer */
3105     if(file->_bufsiz == 0 && !(file->_flag & MSVCRT__IONBF)) {
3106         msvcrt_alloc_buffer(file);
3107     }
3108     if(!(file->_flag & MSVCRT__IOWRT)) {
3109         if(file->_flag & MSVCRT__IORW) {
3110             file->_flag |= MSVCRT__IOWRT;
3111         } else {
3112             MSVCRT__unlock_file(file);
3113             return MSVCRT_EOF;
3114         }
3115     }
3116     if(file->_bufsiz) {
3117         int res=msvcrt_flush_buffer(file);
3118         if(!res)
3119             res = MSVCRT_fputc(c, file);
3120         MSVCRT__unlock_file(file);
3121         return res;
3122     } else {
3123         unsigned char cc=c;
3124         int len;
3125         /* set _cnt to 0 for unbuffered FILEs */
3126         file->_cnt = 0;
3127         len = MSVCRT__write(file->_file, &cc, 1);
3128         if (len == 1) {
3129             MSVCRT__unlock_file(file);
3130             return c & 0xff;
3131         }
3132         file->_flag |= MSVCRT__IOERR;
3133         MSVCRT__unlock_file(file);
3134         return MSVCRT_EOF;
3135     }
3136 }
3137
3138 /*********************************************************************
3139  *              _fputchar (MSVCRT.@)
3140  */
3141 int CDECL _fputchar(int c)
3142 {
3143   return MSVCRT_fputc(c, MSVCRT_stdout);
3144 }
3145
3146 /*********************************************************************
3147  *              fread (MSVCRT.@)
3148  */
3149 MSVCRT_size_t CDECL MSVCRT_fread(void *ptr, MSVCRT_size_t size, MSVCRT_size_t nmemb, MSVCRT_FILE* file)
3150 {
3151   MSVCRT_size_t rcnt=size * nmemb;
3152   MSVCRT_size_t read=0;
3153   int pread=0;
3154
3155   if(!rcnt)
3156         return 0;
3157
3158   MSVCRT__lock_file(file);
3159
3160   /* first buffered data */
3161   if(file->_cnt>0) {
3162         int pcnt= (rcnt>file->_cnt)? file->_cnt:rcnt;
3163         memcpy(ptr, file->_ptr, pcnt);
3164         file->_cnt -= pcnt;
3165         file->_ptr += pcnt;
3166         read += pcnt ;
3167         rcnt -= pcnt ;
3168         ptr = (char*)ptr + pcnt;
3169   } else if(!(file->_flag & MSVCRT__IOREAD )) {
3170         if(file->_flag & MSVCRT__IORW) {
3171                 file->_flag |= MSVCRT__IOREAD;
3172         } else {
3173         MSVCRT__unlock_file(file);
3174         return 0;
3175     }
3176   }
3177   while(rcnt>0)
3178   {
3179     int i;
3180     /* Fill the buffer on small reads.
3181      * TODO: Use a better buffering strategy.
3182      */
3183     if (!file->_cnt && size*nmemb <= MSVCRT_BUFSIZ/2 && !(file->_flag & MSVCRT__IONBF)) {
3184       if (file->_bufsiz == 0) {
3185         msvcrt_alloc_buffer(file);
3186       }
3187       file->_cnt = MSVCRT__read(file->_file, file->_base, file->_bufsiz);
3188       file->_ptr = file->_base;
3189       i = (file->_cnt<rcnt) ? file->_cnt : rcnt;
3190       /* If the buffer fill reaches eof but fread wouldn't, clear eof. */
3191       if (i > 0 && i < file->_cnt) {
3192         msvcrt_get_ioinfo(file->_file)->wxflag &= ~WX_ATEOF;
3193         file->_flag &= ~MSVCRT__IOEOF;
3194       }
3195       if (i > 0) {
3196         memcpy(ptr, file->_ptr, i);
3197         file->_cnt -= i;
3198         file->_ptr += i;
3199       }
3200     } else {
3201       i = MSVCRT__read(file->_file,ptr, rcnt);
3202     }
3203     pread += i;
3204     rcnt -= i;
3205     ptr = (char *)ptr+i;
3206     /* expose feof condition in the flags
3207      * MFC tests file->_flag for feof, and doesn't call feof())
3208      */
3209     if (msvcrt_get_ioinfo(file->_file)->wxflag & WX_ATEOF)
3210         file->_flag |= MSVCRT__IOEOF;
3211     else if (i == -1)
3212     {
3213         file->_flag |= MSVCRT__IOERR;
3214         pread = 0;
3215         rcnt = 0;
3216     }
3217     if (i < 1) break;
3218   }
3219   read+=pread;
3220   MSVCRT__unlock_file(file);
3221   return read / size;
3222 }
3223
3224 /*********************************************************************
3225  *              _wfreopen (MSVCRT.@)
3226  *
3227  */
3228 MSVCRT_FILE* CDECL MSVCRT__wfreopen(const MSVCRT_wchar_t *path, const MSVCRT_wchar_t *mode, MSVCRT_FILE* file)
3229 {
3230   int open_flags, stream_flags, fd;
3231
3232   TRACE(":path (%p) mode (%s) file (%p) fd (%d)\n", debugstr_w(path), debugstr_w(mode), file, file->_file);
3233
3234   LOCK_FILES();
3235   if (!file || ((fd = file->_file) < 0) || fd > MSVCRT_fdend)
3236     file = NULL;
3237   else
3238   {
3239     MSVCRT_fclose(file);
3240     /* map mode string to open() flags. "man fopen" for possibilities. */
3241     if (msvcrt_get_flags(mode, &open_flags, &stream_flags) == -1)
3242       file = NULL;
3243     else
3244     {
3245       fd = _wopen(path, open_flags, MSVCRT__S_IREAD | MSVCRT__S_IWRITE);
3246       if (fd < 0)
3247         file = NULL;
3248       else if (msvcrt_init_fp(file, fd, stream_flags) == -1)
3249       {
3250           file->_flag = 0;
3251           WARN(":failed-last error (%d)\n",GetLastError());
3252           msvcrt_set_errno(GetLastError());
3253           file = NULL;
3254       }
3255     }
3256   }
3257   UNLOCK_FILES();
3258   return file;
3259 }
3260
3261 /*********************************************************************
3262  *      freopen (MSVCRT.@)
3263  *
3264  */
3265 MSVCRT_FILE* CDECL MSVCRT_freopen(const char *path, const char *mode, MSVCRT_FILE* file)
3266 {
3267     MSVCRT_FILE *ret;
3268     MSVCRT_wchar_t *pathW = NULL, *modeW = NULL;
3269
3270     if (path && !(pathW = msvcrt_wstrdupa(path))) return NULL;
3271     if (mode && !(modeW = msvcrt_wstrdupa(mode)))
3272     {
3273         MSVCRT_free(pathW);
3274         return NULL;
3275     }
3276
3277     ret = MSVCRT__wfreopen(pathW, modeW, file);
3278
3279     MSVCRT_free(pathW);
3280     MSVCRT_free(modeW);
3281     return ret;
3282 }
3283
3284 /*********************************************************************
3285  *              fsetpos (MSVCRT.@)
3286  */
3287 int CDECL MSVCRT_fsetpos(MSVCRT_FILE* file, MSVCRT_fpos_t *pos)
3288 {
3289   int ret;
3290
3291   MSVCRT__lock_file(file);
3292   /* Note that all this has been lifted 'as is' from fseek */
3293   if(file->_flag & MSVCRT__IOWRT)
3294         msvcrt_flush_buffer(file);
3295
3296   /* Discard buffered input */
3297   file->_cnt = 0;
3298   file->_ptr = file->_base;
3299   
3300   /* Reset direction of i/o */
3301   if(file->_flag & MSVCRT__IORW) {
3302         file->_flag &= ~(MSVCRT__IOREAD|MSVCRT__IOWRT);
3303   }
3304
3305   ret = (MSVCRT__lseeki64(file->_file,*pos,SEEK_SET) == -1) ? -1 : 0;
3306   MSVCRT__unlock_file(file);
3307   return ret;
3308 }
3309
3310 /*********************************************************************
3311  *              _ftelli64 (MSVCRT.@)
3312  */
3313 __int64 CDECL MSVCRT__ftelli64(MSVCRT_FILE* file)
3314 {
3315     /* TODO: just call fgetpos and return lower half of result */
3316     int off=0;
3317     __int64 pos;
3318
3319     MSVCRT__lock_file(file);
3320     pos = _telli64(file->_file);
3321     if(pos == -1) {
3322         MSVCRT__unlock_file(file);
3323         return -1;
3324     }
3325     if(file->_bufsiz)  {
3326         if( file->_flag & MSVCRT__IOWRT ) {
3327             off = file->_ptr - file->_base;
3328         } else {
3329             off = -file->_cnt;
3330             if (msvcrt_get_ioinfo(file->_file)->wxflag & WX_TEXT) {
3331                 /* Black magic correction for CR removal */
3332                 int i;
3333                 for (i=0; i<file->_cnt; i++) {
3334                     if (file->_ptr[i] == '\n')
3335                         off--;
3336                 }
3337                 /* Black magic when reading CR at buffer boundary*/
3338                 if(msvcrt_get_ioinfo(file->_file)->wxflag & WX_READCR)
3339                     off--;
3340             }
3341         }
3342     }
3343
3344     MSVCRT__unlock_file(file);
3345     return off + pos;
3346 }
3347
3348 /*********************************************************************
3349  *              ftell (MSVCRT.@)
3350  */
3351 LONG CDECL MSVCRT_ftell(MSVCRT_FILE* file)
3352 {
3353   return MSVCRT__ftelli64(file);
3354 }
3355
3356 /*********************************************************************
3357  *              fgetpos (MSVCRT.@)
3358  */
3359 int CDECL MSVCRT_fgetpos(MSVCRT_FILE* file, MSVCRT_fpos_t *pos)
3360 {
3361     int off=0;
3362
3363     MSVCRT__lock_file(file);
3364     *pos = MSVCRT__lseeki64(file->_file,0,SEEK_CUR);
3365     if(*pos == -1) {
3366         MSVCRT__unlock_file(file);
3367         return -1;
3368     }
3369     if(file->_bufsiz)  {
3370         if( file->_flag & MSVCRT__IOWRT ) {
3371             off = file->_ptr - file->_base;
3372         } else {
3373             off = -file->_cnt;
3374             if (msvcrt_get_ioinfo(file->_file)->wxflag & WX_TEXT) {
3375                 /* Black magic correction for CR removal */
3376                 int i;
3377                 for (i=0; i<file->_cnt; i++) {
3378                     if (file->_ptr[i] == '\n')
3379                         off--;
3380                 }
3381                 /* Black magic when reading CR at buffer boundary*/
3382                 if(msvcrt_get_ioinfo(file->_file)->wxflag & WX_READCR)
3383                     off--;
3384             }
3385         }
3386     }
3387     *pos += off;
3388     MSVCRT__unlock_file(file);
3389     return 0;
3390 }
3391
3392 /*********************************************************************
3393  *              fputs (MSVCRT.@)
3394  */
3395 int CDECL MSVCRT_fputs(const char *s, MSVCRT_FILE* file)
3396 {
3397     MSVCRT_size_t i, len = strlen(s);
3398     int ret;
3399
3400     MSVCRT__lock_file(file);
3401     if (!(msvcrt_get_ioinfo(file->_file)->wxflag & WX_TEXT)) {
3402       ret = MSVCRT_fwrite(s,sizeof(*s),len,file) == len ? 0 : MSVCRT_EOF;
3403       MSVCRT__unlock_file(file);
3404       return ret;
3405     }
3406     for (i=0; i<len; i++)
3407       if (MSVCRT_fputc(s[i], file) == MSVCRT_EOF)  {
3408         MSVCRT__unlock_file(file);
3409         return MSVCRT_EOF;
3410       }
3411
3412     MSVCRT__unlock_file(file);
3413     return 0;
3414 }
3415
3416 /*********************************************************************
3417  *              fputws (MSVCRT.@)
3418  */
3419 int CDECL MSVCRT_fputws(const MSVCRT_wchar_t *s, MSVCRT_FILE* file)
3420 {
3421     MSVCRT_size_t i, len = strlenW(s);
3422     int ret;
3423
3424     MSVCRT__lock_file(file);
3425     if (!(msvcrt_get_ioinfo(file->_file)->wxflag & WX_TEXT)) {
3426         ret = MSVCRT_fwrite(s,sizeof(*s),len,file) == len ? 0 : MSVCRT_EOF;
3427         MSVCRT__unlock_file(file);
3428         return ret;
3429     }
3430     for (i=0; i<len; i++) {
3431         if (((s[i] == '\n') && (MSVCRT_fputc('\r', file) == MSVCRT_EOF))
3432                 || MSVCRT_fputwc(s[i], file) == MSVCRT_WEOF) {
3433             MSVCRT__unlock_file(file);
3434             return MSVCRT_WEOF;
3435         }
3436     }
3437
3438     MSVCRT__unlock_file(file);
3439     return 0;
3440 }
3441
3442 /*********************************************************************
3443  *              getchar (MSVCRT.@)
3444  */
3445 int CDECL MSVCRT_getchar(void)
3446 {
3447   return MSVCRT_fgetc(MSVCRT_stdin);
3448 }
3449
3450 /*********************************************************************
3451  *              getc (MSVCRT.@)
3452  */
3453 int CDECL MSVCRT_getc(MSVCRT_FILE* file)
3454 {
3455   return MSVCRT_fgetc(file);
3456 }
3457
3458 /*********************************************************************
3459  *              gets (MSVCRT.@)
3460  */
3461 char * CDECL MSVCRT_gets(char *buf)
3462 {
3463   int    cc;
3464   char * buf_start = buf;
3465
3466   MSVCRT__lock_file(MSVCRT_stdin);
3467   for(cc = MSVCRT_fgetc(MSVCRT_stdin); cc != MSVCRT_EOF && cc != '\n';
3468       cc = MSVCRT_fgetc(MSVCRT_stdin))
3469   if(cc != '\r') *buf++ = (char)cc;
3470
3471   *buf = '\0';
3472
3473   TRACE("got '%s'\n", buf_start);
3474   MSVCRT__unlock_file(MSVCRT_stdin);
3475   return buf_start;
3476 }
3477
3478 /*********************************************************************
3479  *              _getws (MSVCRT.@)
3480  */
3481 MSVCRT_wchar_t* CDECL MSVCRT__getws(MSVCRT_wchar_t* buf)
3482 {
3483     MSVCRT_wint_t cc;
3484     MSVCRT_wchar_t* ws = buf;
3485
3486     MSVCRT__lock_file(MSVCRT_stdin);
3487     for (cc = MSVCRT_fgetwc(MSVCRT_stdin); cc != MSVCRT_WEOF && cc != '\n';
3488          cc = MSVCRT_fgetwc(MSVCRT_stdin))
3489     {
3490         if (cc != '\r')
3491             *buf++ = (MSVCRT_wchar_t)cc;
3492     }
3493     *buf = '\0';
3494
3495     TRACE("got %s\n", debugstr_w(ws));
3496     MSVCRT__unlock_file(MSVCRT_stdin);
3497     return ws;
3498 }
3499
3500 /*********************************************************************
3501  *              putc (MSVCRT.@)
3502  */
3503 int CDECL MSVCRT_putc(int c, MSVCRT_FILE* file)
3504 {
3505   return MSVCRT_fputc(c, file);
3506 }
3507
3508 /*********************************************************************
3509  *              putchar (MSVCRT.@)
3510  */
3511 int CDECL MSVCRT_putchar(int c)
3512 {
3513   return MSVCRT_fputc(c, MSVCRT_stdout);
3514 }
3515
3516 /*********************************************************************
3517  *              _putwch (MSVCRT.@)
3518  */
3519 int CDECL MSVCRT__putwch(int c)
3520 {
3521   return MSVCRT_fputwc(c, MSVCRT_stdout);
3522 }
3523
3524 /*********************************************************************
3525  *              puts (MSVCRT.@)
3526  */
3527 int CDECL MSVCRT_puts(const char *s)
3528 {
3529     MSVCRT_size_t len = strlen(s);
3530     int ret;
3531
3532     MSVCRT__lock_file(MSVCRT_stdout);
3533     if(MSVCRT_fwrite(s, sizeof(*s), len, MSVCRT_stdout) != len) {
3534         MSVCRT__unlock_file(MSVCRT_stdout);
3535         return MSVCRT_EOF;
3536     }
3537
3538     ret = MSVCRT_fwrite("\n",1,1,MSVCRT_stdout) == 1 ? 0 : MSVCRT_EOF;
3539     MSVCRT__unlock_file(MSVCRT_stdout);
3540     return ret;
3541 }
3542
3543 /*********************************************************************
3544  *              _putws (MSVCRT.@)
3545  */
3546 int CDECL _putws(const MSVCRT_wchar_t *s)
3547 {
3548     static const MSVCRT_wchar_t nl = '\n';
3549     MSVCRT_size_t len = strlenW(s);
3550     int ret;
3551
3552     MSVCRT__lock_file(MSVCRT_stdout);
3553     if(MSVCRT_fwrite(s, sizeof(*s), len, MSVCRT_stdout) != len) {
3554         MSVCRT__unlock_file(MSVCRT_stdout);
3555         return MSVCRT_EOF;
3556     }
3557
3558     ret = MSVCRT_fwrite(&nl,sizeof(nl),1,MSVCRT_stdout) == 1 ? 0 : MSVCRT_EOF;
3559     MSVCRT__unlock_file(MSVCRT_stdout);
3560     return ret;
3561 }
3562
3563 /*********************************************************************
3564  *              remove (MSVCRT.@)
3565  */
3566 int CDECL MSVCRT_remove(const char *path)
3567 {
3568   TRACE("(%s)\n",path);
3569   if (DeleteFileA(path))
3570     return 0;
3571   TRACE(":failed (%d)\n",GetLastError());
3572   msvcrt_set_errno(GetLastError());
3573   return -1;
3574 }
3575
3576 /*********************************************************************
3577  *              _wremove (MSVCRT.@)
3578  */
3579 int CDECL _wremove(const MSVCRT_wchar_t *path)
3580 {
3581   TRACE("(%s)\n",debugstr_w(path));
3582   if (DeleteFileW(path))
3583     return 0;
3584   TRACE(":failed (%d)\n",GetLastError());
3585   msvcrt_set_errno(GetLastError());
3586   return -1;
3587 }
3588
3589 /*********************************************************************
3590  *              rename (MSVCRT.@)
3591  */
3592 int CDECL MSVCRT_rename(const char *oldpath,const char *newpath)
3593 {
3594   TRACE(":from %s to %s\n",oldpath,newpath);
3595   if (MoveFileExA(oldpath, newpath, MOVEFILE_COPY_ALLOWED))
3596     return 0;
3597   TRACE(":failed (%d)\n",GetLastError());
3598   msvcrt_set_errno(GetLastError());
3599   return -1;
3600 }
3601
3602 /*********************************************************************
3603  *              _wrename (MSVCRT.@)
3604  */
3605 int CDECL _wrename(const MSVCRT_wchar_t *oldpath,const MSVCRT_wchar_t *newpath)
3606 {
3607   TRACE(":from %s to %s\n",debugstr_w(oldpath),debugstr_w(newpath));
3608   if (MoveFileExW(oldpath, newpath, MOVEFILE_COPY_ALLOWED))
3609     return 0;
3610   TRACE(":failed (%d)\n",GetLastError());
3611   msvcrt_set_errno(GetLastError());
3612   return -1;
3613 }
3614
3615 /*********************************************************************
3616  *              setvbuf (MSVCRT.@)
3617  */
3618 int CDECL MSVCRT_setvbuf(MSVCRT_FILE* file, char *buf, int mode, MSVCRT_size_t size)
3619 {
3620   MSVCRT__lock_file(file);
3621   if(file->_bufsiz) {
3622         MSVCRT_free(file->_base);
3623         file->_bufsiz = 0;
3624         file->_cnt = 0;
3625   }
3626   if(mode == MSVCRT__IOFBF) {
3627         file->_flag &= ~MSVCRT__IONBF;
3628         file->_base = file->_ptr = buf;
3629         if(buf) {
3630                 file->_bufsiz = size;
3631         }
3632   } else {
3633         file->_flag |= MSVCRT__IONBF;
3634   }
3635   MSVCRT__unlock_file(file);
3636   return 0;
3637 }
3638
3639 /*********************************************************************
3640  *              setbuf (MSVCRT.@)
3641  */
3642 void CDECL MSVCRT_setbuf(MSVCRT_FILE* file, char *buf)
3643 {
3644   MSVCRT_setvbuf(file, buf, buf ? MSVCRT__IOFBF : MSVCRT__IONBF, MSVCRT_BUFSIZ);
3645 }
3646
3647 /*********************************************************************
3648  *              tmpnam (MSVCRT.@)
3649  */
3650 char * CDECL MSVCRT_tmpnam(char *s)
3651 {
3652   char tmpstr[16];
3653   char *p;
3654   int count, size;
3655
3656   if (!s) {
3657     thread_data_t *data = msvcrt_get_thread_data();
3658
3659     if(!data->tmpnam_buffer)
3660       data->tmpnam_buffer = MSVCRT_malloc(MAX_PATH);
3661
3662     s = data->tmpnam_buffer;
3663   }
3664
3665   msvcrt_int_to_base32(GetCurrentProcessId(), tmpstr);
3666   p = s + sprintf(s, "\\s%s.", tmpstr);
3667   for (count = 0; count < MSVCRT_TMP_MAX; count++)
3668   {
3669     size = msvcrt_int_to_base32(tmpnam_unique++, tmpstr);
3670     memcpy(p, tmpstr, size);
3671     if (GetFileAttributesA(s) == INVALID_FILE_ATTRIBUTES &&
3672         GetLastError() == ERROR_FILE_NOT_FOUND)
3673       break;
3674   }
3675   return s;
3676 }
3677
3678 /*********************************************************************
3679  *              _wtmpnam (MSVCRT.@)
3680  */
3681 MSVCRT_wchar_t * CDECL MSVCRT_wtmpnam(MSVCRT_wchar_t *s)
3682 {
3683     static const MSVCRT_wchar_t format[] = {'\\','s','%','s','.',0};
3684     MSVCRT_wchar_t tmpstr[16];
3685     MSVCRT_wchar_t *p;
3686     int count, size;
3687     if (!s) {
3688         thread_data_t *data = msvcrt_get_thread_data();
3689
3690         if(!data->wtmpnam_buffer)
3691             data->wtmpnam_buffer = MSVCRT_malloc(sizeof(MSVCRT_wchar_t[MAX_PATH]));
3692
3693         s = data->wtmpnam_buffer;
3694     }
3695
3696     msvcrt_int_to_base32_w(GetCurrentProcessId(), tmpstr);
3697     p = s + MSVCRT__snwprintf(s, MAX_PATH, format, tmpstr);
3698     for (count = 0; count < MSVCRT_TMP_MAX; count++)
3699     {
3700         size = msvcrt_int_to_base32_w(tmpnam_unique++, tmpstr);
3701         memcpy(p, tmpstr, size*sizeof(MSVCRT_wchar_t));
3702         if (GetFileAttributesW(s) == INVALID_FILE_ATTRIBUTES &&
3703                 GetLastError() == ERROR_FILE_NOT_FOUND)
3704             break;
3705     }
3706     return s;
3707 }
3708
3709 /*********************************************************************
3710  *              tmpfile (MSVCRT.@)
3711  */
3712 MSVCRT_FILE* CDECL MSVCRT_tmpfile(void)
3713 {
3714   char *filename = MSVCRT_tmpnam(NULL);
3715   int fd;
3716   MSVCRT_FILE* file = NULL;
3717
3718   LOCK_FILES();
3719   fd = MSVCRT__open(filename, MSVCRT__O_CREAT | MSVCRT__O_BINARY | MSVCRT__O_RDWR | MSVCRT__O_TEMPORARY);
3720   if (fd != -1 && (file = msvcrt_alloc_fp()))
3721   {
3722     if (msvcrt_init_fp(file, fd, MSVCRT__O_RDWR) == -1)
3723     {
3724         file->_flag = 0;
3725         file = NULL;
3726     }
3727     else file->_tmpfname = _strdup(filename);
3728   }
3729   UNLOCK_FILES();
3730   return file;
3731 }
3732
3733 static int puts_clbk_file_a(void *file, int len, const char *str)
3734 {
3735     return MSVCRT_fwrite(str, sizeof(char), len, file);
3736 }
3737
3738 static int puts_clbk_file_w(void *file, int len, const MSVCRT_wchar_t *str)
3739 {
3740     return MSVCRT_fwrite(str, sizeof(MSVCRT_wchar_t), len, file);
3741 }
3742
3743 /*********************************************************************
3744  *              vfprintf (MSVCRT.@)
3745  */
3746 int CDECL MSVCRT_vfprintf(MSVCRT_FILE* file, const char *format, __ms_va_list valist)
3747 {
3748     int ret;
3749
3750     MSVCRT__lock_file(file);
3751     ret = pf_printf_a(puts_clbk_file_a, file, format, NULL, FALSE, FALSE, arg_clbk_valist, NULL, &valist);
3752     MSVCRT__unlock_file(file);
3753
3754     return ret;
3755 }
3756
3757 /*********************************************************************
3758  *              vfprintf_s (MSVCRT.@)
3759  */
3760 int CDECL MSVCRT_vfprintf_s(MSVCRT_FILE* file, const char *format, __ms_va_list valist)
3761 {
3762     int ret;
3763
3764     if(!MSVCRT_CHECK_PMT(file != NULL)) {
3765         *MSVCRT__errno() = MSVCRT_EINVAL;
3766         return -1;
3767     }
3768
3769     MSVCRT__lock_file(file);
3770     ret = pf_printf_a(puts_clbk_file_a, file, format, NULL, FALSE, TRUE, arg_clbk_valist, NULL, &valist);
3771     MSVCRT__unlock_file(file);
3772
3773     return ret;
3774 }
3775
3776 /*********************************************************************
3777  *              vfwprintf (MSVCRT.@)
3778  */
3779 int CDECL MSVCRT_vfwprintf(MSVCRT_FILE* file, const MSVCRT_wchar_t *format, __ms_va_list valist)
3780 {
3781     int ret;
3782
3783     MSVCRT__lock_file(file);
3784     ret = pf_printf_w(puts_clbk_file_w, file, format, NULL, FALSE, FALSE, arg_clbk_valist, NULL, &valist);
3785     MSVCRT__unlock_file(file);
3786
3787     return ret;
3788 }
3789
3790 /*********************************************************************
3791  *              vfwprintf_s (MSVCRT.@)
3792  */
3793 int CDECL MSVCRT_vfwprintf_s(MSVCRT_FILE* file, const MSVCRT_wchar_t *format, __ms_va_list valist)
3794 {
3795     int ret;
3796
3797     if(!MSVCRT_CHECK_PMT( file != NULL)) {
3798         *MSVCRT__errno() = MSVCRT_EINVAL;
3799         return -1;
3800     }
3801
3802     MSVCRT__lock_file(file);
3803     ret = pf_printf_w(puts_clbk_file_w, file, format, NULL, FALSE, TRUE, arg_clbk_valist, NULL, &valist);
3804     MSVCRT__unlock_file(file);
3805
3806     return ret;
3807 }
3808
3809 /*********************************************************************
3810  *              vprintf (MSVCRT.@)
3811  */
3812 int CDECL MSVCRT_vprintf(const char *format, __ms_va_list valist)
3813 {
3814   return MSVCRT_vfprintf(MSVCRT_stdout,format,valist);
3815 }
3816
3817 /*********************************************************************
3818  *              vprintf_s (MSVCRT.@)
3819  */
3820 int CDECL MSVCRT_vprintf_s(const char *format, __ms_va_list valist)
3821 {
3822   return MSVCRT_vfprintf_s(MSVCRT_stdout,format,valist);
3823 }
3824
3825 /*********************************************************************
3826  *              vwprintf (MSVCRT.@)
3827  */
3828 int CDECL MSVCRT_vwprintf(const MSVCRT_wchar_t *format, __ms_va_list valist)
3829 {
3830   return MSVCRT_vfwprintf(MSVCRT_stdout,format,valist);
3831 }
3832
3833 /*********************************************************************
3834  *              vwprintf_s (MSVCRT.@)
3835  */
3836 int CDECL MSVCRT_vwprintf_s(const MSVCRT_wchar_t *format, __ms_va_list valist)
3837 {
3838   return MSVCRT_vfwprintf_s(MSVCRT_stdout,format,valist);
3839 }
3840
3841 /*********************************************************************
3842  *              fprintf (MSVCRT.@)
3843  */
3844 int CDECL MSVCRT_fprintf(MSVCRT_FILE* file, const char *format, ...)
3845 {
3846     __ms_va_list valist;
3847     int res;
3848     __ms_va_start(valist, format);
3849     res = MSVCRT_vfprintf(file, format, valist);
3850     __ms_va_end(valist);
3851     return res;
3852 }
3853
3854 /*********************************************************************
3855  *              fprintf_s (MSVCRT.@)
3856  */
3857 int CDECL MSVCRT_fprintf_s(MSVCRT_FILE* file, const char *format, ...)
3858 {
3859     __ms_va_list valist;
3860     int res;
3861     __ms_va_start(valist, format);
3862     res = MSVCRT_vfprintf_s(file, format, valist);
3863     __ms_va_end(valist);
3864     return res;
3865 }
3866
3867 /*********************************************************************
3868  *              fwprintf (MSVCRT.@)
3869  */
3870 int CDECL MSVCRT_fwprintf(MSVCRT_FILE* file, const MSVCRT_wchar_t *format, ...)
3871 {
3872     __ms_va_list valist;
3873     int res;
3874     __ms_va_start(valist, format);
3875     res = MSVCRT_vfwprintf(file, format, valist);
3876     __ms_va_end(valist);
3877     return res;
3878 }
3879
3880 /*********************************************************************
3881  *              fwprintf_s (MSVCRT.@)
3882  */
3883 int CDECL MSVCRT_fwprintf_s(MSVCRT_FILE* file, const MSVCRT_wchar_t *format, ...)
3884 {
3885     __ms_va_list valist;
3886     int res;
3887     __ms_va_start(valist, format);
3888     res = MSVCRT_vfwprintf_s(file, format, valist);
3889     __ms_va_end(valist);
3890     return res;
3891 }
3892
3893 /*********************************************************************
3894  *              printf (MSVCRT.@)
3895  */
3896 int CDECL MSVCRT_printf(const char *format, ...)
3897 {
3898     __ms_va_list valist;
3899     int res;
3900     __ms_va_start(valist, format);
3901     res = MSVCRT_vfprintf(MSVCRT_stdout, format, valist);
3902     __ms_va_end(valist);
3903     return res;
3904 }
3905
3906 /*********************************************************************
3907  *              printf_s (MSVCRT.@)
3908  */
3909 int CDECL MSVCRT_printf_s(const char *format, ...)
3910 {
3911     __ms_va_list valist;
3912     int res;
3913     __ms_va_start(valist, format);
3914     res = MSVCRT_vprintf_s(format, valist);
3915     __ms_va_end(valist);
3916     return res;
3917 }
3918
3919 /*********************************************************************
3920  *              ungetc (MSVCRT.@)
3921  */
3922 int CDECL MSVCRT_ungetc(int c, MSVCRT_FILE * file)
3923 {
3924     if (c == MSVCRT_EOF)
3925         return MSVCRT_EOF;
3926
3927     MSVCRT__lock_file(file);
3928     if(file->_bufsiz == 0) {
3929         msvcrt_alloc_buffer(file);
3930         file->_ptr++;
3931     }
3932     if(file->_ptr>file->_base) {
3933         file->_ptr--;
3934         *file->_ptr=c;
3935         file->_cnt++;
3936         MSVCRT_clearerr(file);
3937         MSVCRT__unlock_file(file);
3938         return c;
3939     }
3940
3941     MSVCRT__unlock_file(file);
3942     return MSVCRT_EOF;
3943 }
3944
3945 /*********************************************************************
3946  *              ungetwc (MSVCRT.@)
3947  */
3948 MSVCRT_wint_t CDECL MSVCRT_ungetwc(MSVCRT_wint_t wc, MSVCRT_FILE * file)
3949 {
3950     MSVCRT_wchar_t mwc = wc;
3951     char * pp = (char *)&mwc;
3952     int i;
3953
3954     MSVCRT__lock_file(file);
3955     for(i=sizeof(MSVCRT_wchar_t)-1;i>=0;i--) {
3956         if(pp[i] != MSVCRT_ungetc(pp[i],file)) {
3957             MSVCRT__unlock_file(file);
3958             return MSVCRT_WEOF;
3959         }
3960     }
3961
3962     MSVCRT__unlock_file(file);
3963     return mwc;
3964 }
3965
3966 /*********************************************************************
3967  *              wprintf (MSVCRT.@)
3968  */
3969 int CDECL MSVCRT_wprintf(const MSVCRT_wchar_t *format, ...)
3970 {
3971     __ms_va_list valist;
3972     int res;
3973     __ms_va_start(valist, format);
3974     res = MSVCRT_vwprintf(format, valist);
3975     __ms_va_end(valist);
3976     return res;
3977 }
3978
3979 /*********************************************************************
3980  *              wprintf_s (MSVCRT.@)
3981  */
3982 int CDECL MSVCRT_wprintf_s(const MSVCRT_wchar_t *format, ...)
3983 {
3984     __ms_va_list valist;
3985     int res;
3986     __ms_va_start(valist, format);
3987     res = MSVCRT_vwprintf_s(format, valist);
3988     __ms_va_end(valist);
3989     return res;
3990 }
3991
3992 /*********************************************************************
3993  *              _getmaxstdio (MSVCRT.@)
3994  */
3995 int CDECL _getmaxstdio(void)
3996 {
3997     return MSVCRT_max_streams;
3998 }
3999
4000 /*********************************************************************
4001  *              _setmaxstdio (MSVCRT.@)
4002  */
4003 int CDECL _setmaxstdio(int newmax)
4004 {
4005     TRACE("%d\n", newmax);
4006
4007     if(newmax<_IOB_ENTRIES || newmax>MSVCRT_MAX_FILES || newmax<MSVCRT_stream_idx)
4008         return -1;
4009
4010     MSVCRT_max_streams = newmax;
4011     return MSVCRT_max_streams;
4012 }