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