windowscodecs: Add COM proxies and stubs.
[wine] / dlls / msvcrt / time.c
1 /*
2  * msvcrt.dll date/time 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 Hans Leidekker
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23  */
24
25 #include "config.h"
26
27 #define _POSIX_PTHREAD_SEMANTICS /* switch to a 2 arg style asctime_r on Solaris */
28 #include <time.h>
29 #ifdef HAVE_SYS_TIMES_H
30 # include <sys/times.h>
31 #endif
32 #include <limits.h>
33
34 #include "msvcrt.h"
35 #include "mtdll.h"
36 #include "winbase.h"
37 #include "winnls.h"
38 #include "wine/debug.h"
39
40 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
41
42 static const int MonthLengths[2][12] =
43 {
44     { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
45     { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
46 };
47
48 static inline int IsLeapYear(int Year)
49 {
50     return Year % 4 == 0 && (Year % 100 != 0 || Year % 400 == 0);
51 }
52
53 static inline void msvcrt_tm_to_unix( struct tm *dest, const struct MSVCRT_tm *src )
54 {
55     memset( dest, 0, sizeof(*dest) );
56     dest->tm_sec   = src->tm_sec;
57     dest->tm_min   = src->tm_min;
58     dest->tm_hour  = src->tm_hour;
59     dest->tm_mday  = src->tm_mday;
60     dest->tm_mon   = src->tm_mon;
61     dest->tm_year  = src->tm_year;
62     dest->tm_wday  = src->tm_wday;
63     dest->tm_yday  = src->tm_yday;
64     dest->tm_isdst = src->tm_isdst;
65 }
66
67 static inline void unix_tm_to_msvcrt( struct MSVCRT_tm *dest, const struct tm *src )
68 {
69     memset( dest, 0, sizeof(*dest) );
70     dest->tm_sec   = src->tm_sec;
71     dest->tm_min   = src->tm_min;
72     dest->tm_hour  = src->tm_hour;
73     dest->tm_mday  = src->tm_mday;
74     dest->tm_mon   = src->tm_mon;
75     dest->tm_year  = src->tm_year;
76     dest->tm_wday  = src->tm_wday;
77     dest->tm_yday  = src->tm_yday;
78     dest->tm_isdst = src->tm_isdst;
79 }
80
81 static inline void write_invalid_msvcrt_tm( struct MSVCRT_tm *tm )
82 {
83     tm->tm_sec = -1;
84     tm->tm_min = -1;
85     tm->tm_hour = -1;
86     tm->tm_mday = -1;
87     tm->tm_mon = -1;
88     tm->tm_year = -1;
89     tm->tm_wday = -1;
90     tm->tm_yday = -1;
91     tm->tm_isdst = -1;
92 }
93
94 #define SECSPERDAY        86400
95 /* 1601 to 1970 is 369 years plus 89 leap days */
96 #define SECS_1601_TO_1970  ((369 * 365 + 89) * (ULONGLONG)SECSPERDAY)
97 #define TICKSPERSEC       10000000
98 #define TICKSPERMSEC      10000
99 #define TICKS_1601_TO_1970 (SECS_1601_TO_1970 * TICKSPERSEC)
100
101 /**********************************************************************
102  *              _mktime64 (MSVCRT.@)
103  */
104 MSVCRT___time64_t CDECL MSVCRT__mktime64(struct MSVCRT_tm *mstm)
105 {
106     time_t secs;
107     struct tm tm;
108
109     msvcrt_tm_to_unix( &tm, mstm );
110     secs = mktime( &tm );
111     unix_tm_to_msvcrt( mstm, &tm );
112
113     return secs < 0 ? -1 : secs;
114 }
115
116 /**********************************************************************
117  *              _mktime32 (MSVCRT.@)
118  */
119 MSVCRT___time32_t CDECL MSVCRT__mktime32(struct MSVCRT_tm *mstm)
120 {
121     return MSVCRT__mktime64( mstm );
122 }
123
124 /**********************************************************************
125  *              mktime (MSVCRT.@)
126  */
127 #ifdef _WIN64
128 MSVCRT___time64_t CDECL MSVCRT_mktime(struct MSVCRT_tm *mstm)
129 {
130     return MSVCRT__mktime64( mstm );
131 }
132 #else
133 MSVCRT___time32_t CDECL MSVCRT_mktime(struct MSVCRT_tm *mstm)
134 {
135     return MSVCRT__mktime32( mstm );
136 }
137 #endif
138
139 /**********************************************************************
140  *              _mkgmtime64 (MSVCRT.@)
141  *
142  * time->tm_isdst value is ignored
143  */
144 MSVCRT___time64_t CDECL MSVCRT__mkgmtime64(struct MSVCRT_tm *time)
145 {
146     SYSTEMTIME st;
147     FILETIME ft;
148     MSVCRT___time64_t ret;
149     int i;
150
151     st.wMilliseconds = 0;
152     st.wSecond = time->tm_sec;
153     st.wMinute = time->tm_min;
154     st.wHour = time->tm_hour;
155     st.wDay = time->tm_mday;
156     st.wMonth = time->tm_mon+1;
157     st.wYear = time->tm_year+1900;
158
159     if(!SystemTimeToFileTime(&st, &ft))
160         return -1;
161
162     FileTimeToSystemTime(&ft, &st);
163     time->tm_wday = st.wDayOfWeek;
164
165     for(i=time->tm_yday=0; i<st.wMonth-1; i++)
166         time->tm_yday += MonthLengths[IsLeapYear(st.wYear)][i];
167     time->tm_yday += st.wDay-1;
168
169     ret = ((MSVCRT___time64_t)ft.dwHighDateTime<<32)+ft.dwLowDateTime;
170     ret = (ret-TICKS_1601_TO_1970)/TICKSPERSEC;
171     return ret;
172 }
173
174 /**********************************************************************
175  *              _mkgmtime32 (MSVCRT.@)
176  */
177 MSVCRT___time32_t CDECL MSVCRT__mkgmtime32(struct MSVCRT_tm *time)
178 {
179     return MSVCRT__mkgmtime64(time);
180 }
181
182 /**********************************************************************
183  *              _mkgmtime (MSVCRT.@)
184  */
185 #ifdef _WIN64
186 MSVCRT___time64_t CDECL MSVCRT__mkgmtime(struct MSVCRT_tm *time)
187 {
188     return MSVCRT__mkgmtime64(time);
189 }
190 #else
191 MSVCRT___time32_t CDECL MSVCRT__mkgmtime(struct MSVCRT_tm *time)
192 {
193     return MSVCRT__mkgmtime32(time);
194 }
195 #endif
196
197 /*********************************************************************
198  *      _localtime64 (MSVCRT.@)
199  */
200 struct MSVCRT_tm* CDECL MSVCRT__localtime64(const MSVCRT___time64_t* secs)
201 {
202     struct tm *tm;
203     thread_data_t *data;
204     time_t seconds = *secs;
205
206     if (seconds < 0) return NULL;
207
208     _mlock(_TIME_LOCK);
209     if (!(tm = localtime( &seconds))) {
210         _munlock(_TIME_LOCK);
211         return NULL;
212     }
213
214     data = msvcrt_get_thread_data();
215     unix_tm_to_msvcrt( &data->time_buffer, tm );
216     _munlock(_TIME_LOCK);
217
218     return &data->time_buffer;
219 }
220
221 /*********************************************************************
222  *      _localtime64_s (MSVCRT.@)
223  */
224 int CDECL _localtime64_s(struct MSVCRT_tm *time, const MSVCRT___time64_t *secs)
225 {
226     struct tm *tm;
227     time_t seconds;
228
229     if (!time || !secs || *secs < 0 || *secs > _MAX__TIME64_T)
230     {
231         if (time)
232             write_invalid_msvcrt_tm(time);
233
234         *MSVCRT__errno() = MSVCRT_EINVAL;
235         return MSVCRT_EINVAL;
236     }
237
238     seconds = *secs;
239
240     _mlock(_TIME_LOCK);
241     if (!(tm = localtime(&seconds)))
242     {
243         _munlock(_TIME_LOCK);
244         *MSVCRT__errno() = MSVCRT_EINVAL;
245         return MSVCRT_EINVAL;
246     }
247
248     unix_tm_to_msvcrt(time, tm);
249     _munlock(_TIME_LOCK);
250     return 0;
251 }
252
253 /*********************************************************************
254  *      _localtime32 (MSVCRT.@)
255  */
256 struct MSVCRT_tm* CDECL MSVCRT__localtime32(const MSVCRT___time32_t* secs)
257 {
258     MSVCRT___time64_t secs64 = *secs;
259     return MSVCRT__localtime64( &secs64 );
260 }
261
262 /*********************************************************************
263  *      _localtime32_s (MSVCRT.@)
264  */
265 int CDECL _localtime32_s(struct MSVCRT_tm *time, const MSVCRT___time32_t *secs)
266 {
267     MSVCRT___time64_t secs64;
268
269     if (!time || !secs || *secs < 0)
270     {
271         if (time)
272             write_invalid_msvcrt_tm(time);
273
274         *MSVCRT__errno() = MSVCRT_EINVAL;
275         return MSVCRT_EINVAL;
276     }
277
278     secs64 = *secs;
279     return _localtime64_s(time, &secs64);
280 }
281
282 /*********************************************************************
283  *      localtime (MSVCRT.@)
284  */
285 #ifdef _WIN64
286 struct MSVCRT_tm* CDECL MSVCRT_localtime(const MSVCRT___time64_t* secs)
287 {
288     return MSVCRT__localtime64( secs );
289 }
290 #else
291 struct MSVCRT_tm* CDECL MSVCRT_localtime(const MSVCRT___time32_t* secs)
292 {
293     return MSVCRT__localtime32( secs );
294 }
295 #endif
296
297 /*********************************************************************
298  *      _gmtime64 (MSVCRT.@)
299  */
300 int CDECL MSVCRT__gmtime64_s(struct MSVCRT_tm *res, const MSVCRT___time64_t *secs)
301 {
302     int i;
303     FILETIME ft;
304     SYSTEMTIME st;
305     ULONGLONG time;
306
307     if (!res || !secs || *secs < 0) {
308         if (res) {
309             write_invalid_msvcrt_tm(res);
310         }
311
312         *MSVCRT__errno() = MSVCRT_EINVAL;
313         return MSVCRT_EINVAL;
314     }
315
316     time = *secs * (ULONGLONG)TICKSPERSEC + TICKS_1601_TO_1970;
317
318     ft.dwHighDateTime = (UINT)(time >> 32);
319     ft.dwLowDateTime  = (UINT)time;
320
321     FileTimeToSystemTime(&ft, &st);
322
323     res->tm_sec  = st.wSecond;
324     res->tm_min  = st.wMinute;
325     res->tm_hour = st.wHour;
326     res->tm_mday = st.wDay;
327     res->tm_year = st.wYear - 1900;
328     res->tm_mon  = st.wMonth - 1;
329     res->tm_wday = st.wDayOfWeek;
330     for (i = res->tm_yday = 0; i < st.wMonth - 1; i++) {
331         res->tm_yday += MonthLengths[IsLeapYear(st.wYear)][i];
332     }
333
334     res->tm_yday += st.wDay - 1;
335     res->tm_isdst = 0;
336
337     return 0;
338 }
339
340 /*********************************************************************
341  *      _gmtime64 (MSVCRT.@)
342  */
343 struct MSVCRT_tm* CDECL MSVCRT__gmtime64(const MSVCRT___time64_t *secs)
344 {
345     thread_data_t * const data = msvcrt_get_thread_data();
346
347     if(MSVCRT__gmtime64_s(&data->time_buffer, secs))
348         return NULL;
349     return &data->time_buffer;
350 }
351
352 /*********************************************************************
353  *      _gmtime32_s (MSVCRT.@)
354  */
355 int CDECL MSVCRT__gmtime32_s(struct MSVCRT_tm *res, const MSVCRT___time32_t *secs)
356 {
357     MSVCRT___time64_t secs64;
358
359     if(secs) {
360         secs64 = *secs;
361         return MSVCRT__gmtime64_s(res, &secs64);
362     }
363     return MSVCRT__gmtime64_s(res, NULL);
364 }
365
366 /*********************************************************************
367  *      _gmtime32 (MSVCRT.@)
368  */
369 struct MSVCRT_tm* CDECL MSVCRT__gmtime32(const MSVCRT___time32_t* secs)
370 {
371     MSVCRT___time64_t secs64;
372
373     if(!secs)
374         return NULL;
375
376     secs64 = *secs;
377     return MSVCRT__gmtime64( &secs64 );
378 }
379
380 /*********************************************************************
381  *      gmtime (MSVCRT.@)
382  */
383 #ifdef _WIN64
384 struct MSVCRT_tm* CDECL MSVCRT_gmtime(const MSVCRT___time64_t* secs)
385 {
386     return MSVCRT__gmtime64( secs );
387 }
388 #else
389 struct MSVCRT_tm* CDECL MSVCRT_gmtime(const MSVCRT___time32_t* secs)
390 {
391     return MSVCRT__gmtime32( secs );
392 }
393 #endif
394
395 /**********************************************************************
396  *              _strdate (MSVCRT.@)
397  */
398 char* CDECL _strdate(char* date)
399 {
400   static const char format[] = "MM'/'dd'/'yy";
401
402   GetDateFormatA(LOCALE_NEUTRAL, 0, NULL, format, date, 9);
403
404   return date;
405 }
406
407 /**********************************************************************
408  *              _strdate_s (MSVCRT.@)
409  */
410 int CDECL _strdate_s(char* date, MSVCRT_size_t size)
411 {
412     if(date && size)
413         date[0] = '\0';
414
415     if(!date) {
416         *MSVCRT__errno() = MSVCRT_EINVAL;
417         return MSVCRT_EINVAL;
418     }
419
420     if(size < 9) {
421         *MSVCRT__errno() = MSVCRT_ERANGE;
422         return MSVCRT_ERANGE;
423     }
424
425     _strdate(date);
426     return 0;
427 }
428
429 /**********************************************************************
430  *              _wstrdate (MSVCRT.@)
431  */
432 MSVCRT_wchar_t* CDECL _wstrdate(MSVCRT_wchar_t* date)
433 {
434   static const WCHAR format[] = { 'M','M','\'','/','\'','d','d','\'','/','\'','y','y',0 };
435
436   GetDateFormatW(LOCALE_NEUTRAL, 0, NULL, format, date, 9);
437
438   return date;
439 }
440
441 /**********************************************************************
442  *              _wstrdate_s (MSVCRT.@)
443  */
444 int CDECL _wstrdate_s(MSVCRT_wchar_t* date, MSVCRT_size_t size)
445 {
446     if(date && size)
447         date[0] = '\0';
448
449     if(!date) {
450         *MSVCRT__errno() = MSVCRT_EINVAL;
451         return MSVCRT_EINVAL;
452     }
453
454     if(size < 9) {
455         *MSVCRT__errno() = MSVCRT_ERANGE;
456         return MSVCRT_ERANGE;
457     }
458
459     _wstrdate(date);
460     return 0;
461 }
462
463 /*********************************************************************
464  *              _strtime (MSVCRT.@)
465  */
466 char* CDECL _strtime(char* time)
467 {
468   static const char format[] = "HH':'mm':'ss";
469
470   GetTimeFormatA(LOCALE_NEUTRAL, 0, NULL, format, time, 9); 
471
472   return time;
473 }
474
475 /*********************************************************************
476  *              _strtime_s (MSVCRT.@)
477  */
478 int CDECL _strtime_s(char* time, MSVCRT_size_t size)
479 {
480     if(time && size)
481         time[0] = '\0';
482
483     if(!time) {
484         *MSVCRT__errno() = MSVCRT_EINVAL;
485         return MSVCRT_EINVAL;
486     }
487
488     if(size < 9) {
489         *MSVCRT__errno() = MSVCRT_ERANGE;
490         return MSVCRT_ERANGE;
491     }
492
493     _strtime(time);
494     return 0;
495 }
496
497 /*********************************************************************
498  *              _wstrtime (MSVCRT.@)
499  */
500 MSVCRT_wchar_t* CDECL _wstrtime(MSVCRT_wchar_t* time)
501 {
502   static const WCHAR format[] = { 'H','H','\'',':','\'','m','m','\'',':','\'','s','s',0 };
503
504   GetTimeFormatW(LOCALE_NEUTRAL, 0, NULL, format, time, 9);
505
506   return time;
507 }
508
509 /*********************************************************************
510  *              _wstrtime_s (MSVCRT.@)
511  */
512 int CDECL _wstrtime_s(MSVCRT_wchar_t* time, MSVCRT_size_t size)
513 {
514     if(time && size)
515         time[0] = '\0';
516
517     if(!time) {
518         *MSVCRT__errno() = MSVCRT_EINVAL;
519         return MSVCRT_EINVAL;
520     }
521
522     if(size < 9) {
523         *MSVCRT__errno() = MSVCRT_ERANGE;
524         return MSVCRT_ERANGE;
525     }
526
527     _wstrtime(time);
528     return 0;
529 }
530
531 /*********************************************************************
532  *              clock (MSVCRT.@)
533  */
534 MSVCRT_clock_t CDECL MSVCRT_clock(void)
535 {
536   FILETIME ftc, fte, ftk, ftu;
537   ULONGLONG utime, ktime;
538  
539   MSVCRT_clock_t clock;
540
541   GetProcessTimes(GetCurrentProcess(), &ftc, &fte, &ftk, &ftu);
542
543   ktime = ((ULONGLONG)ftk.dwHighDateTime << 32) | ftk.dwLowDateTime;
544   utime = ((ULONGLONG)ftu.dwHighDateTime << 32) | ftu.dwLowDateTime;
545
546   clock = (utime + ktime) / (TICKSPERSEC / MSVCRT_CLOCKS_PER_SEC);
547
548   return clock;
549 }
550
551 /*********************************************************************
552  *              _difftime64 (MSVCRT.@)
553  */
554 double CDECL MSVCRT__difftime64(MSVCRT___time64_t time1, MSVCRT___time64_t time2)
555 {
556   return (double)(time1 - time2);
557 }
558
559 /*********************************************************************
560  *              _difftime32 (MSVCRT.@)
561  */
562 double CDECL MSVCRT__difftime32(MSVCRT___time32_t time1, MSVCRT___time32_t time2)
563 {
564   return (double)(time1 - time2);
565 }
566
567 /*********************************************************************
568  *              difftime (MSVCRT.@)
569  */
570 #ifdef _WIN64
571 double CDECL MSVCRT_difftime(MSVCRT___time64_t time1, MSVCRT___time64_t time2)
572 {
573     return MSVCRT__difftime64( time1, time2 );
574 }
575 #else
576 double CDECL MSVCRT_difftime(MSVCRT___time32_t time1, MSVCRT___time32_t time2)
577 {
578     return MSVCRT__difftime32( time1, time2 );
579 }
580 #endif
581
582 /*********************************************************************
583  *              _ftime64 (MSVCRT.@)
584  */
585 void CDECL MSVCRT__ftime64(struct MSVCRT___timeb64 *buf)
586 {
587   TIME_ZONE_INFORMATION tzinfo;
588   FILETIME ft;
589   ULONGLONG time;
590
591   DWORD tzid = GetTimeZoneInformation(&tzinfo);
592   GetSystemTimeAsFileTime(&ft);
593
594   time = ((ULONGLONG)ft.dwHighDateTime << 32) | ft.dwLowDateTime;
595
596   buf->time = time / TICKSPERSEC - SECS_1601_TO_1970;
597   buf->millitm = (time % TICKSPERSEC) / TICKSPERMSEC;
598   buf->timezone = tzinfo.Bias +
599       ( tzid == TIME_ZONE_ID_STANDARD ? tzinfo.StandardBias :
600       ( tzid == TIME_ZONE_ID_DAYLIGHT ? tzinfo.DaylightBias : 0 ));
601   buf->dstflag = (tzid == TIME_ZONE_ID_DAYLIGHT?1:0);
602 }
603
604 /*********************************************************************
605  *              _ftime32 (MSVCRT.@)
606  */
607 void CDECL MSVCRT__ftime32(struct MSVCRT___timeb32 *buf)
608 {
609     struct MSVCRT___timeb64 buf64;
610
611     MSVCRT__ftime64( &buf64 );
612     buf->time     = buf64.time;
613     buf->millitm  = buf64.millitm;
614     buf->timezone = buf64.timezone;
615     buf->dstflag  = buf64.dstflag;
616 }
617
618 /*********************************************************************
619  *              _ftime (MSVCRT.@)
620  */
621 #ifdef _WIN64
622 void CDECL MSVCRT__ftime(struct MSVCRT___timeb64 *buf)
623 {
624     return MSVCRT__ftime64( buf );
625 }
626 #else
627 void CDECL MSVCRT__ftime(struct MSVCRT___timeb32 *buf)
628 {
629     return MSVCRT__ftime32( buf );
630 }
631 #endif
632
633 /*********************************************************************
634  *              _time64 (MSVCRT.@)
635  */
636 MSVCRT___time64_t CDECL MSVCRT__time64(MSVCRT___time64_t *buf)
637 {
638     MSVCRT___time64_t curtime;
639     struct MSVCRT___timeb64 tb;
640
641     MSVCRT__ftime64(&tb);
642
643     curtime = tb.time;
644     return buf ? *buf = curtime : curtime;
645 }
646
647 /*********************************************************************
648  *              _time32 (MSVCRT.@)
649  */
650 MSVCRT___time32_t CDECL MSVCRT__time32(MSVCRT___time32_t *buf)
651 {
652     MSVCRT___time32_t curtime;
653     struct MSVCRT___timeb64 tb;
654
655     MSVCRT__ftime64(&tb);
656
657     curtime = tb.time;
658     return buf ? *buf = curtime : curtime;
659 }
660
661 /*********************************************************************
662  *              time (MSVCRT.@)
663  */
664 #ifdef _WIN64
665 MSVCRT___time64_t CDECL MSVCRT_time(MSVCRT___time64_t* buf)
666 {
667     return MSVCRT__time64( buf );
668 }
669 #else
670 MSVCRT___time32_t CDECL MSVCRT_time(MSVCRT___time32_t* buf)
671 {
672     return MSVCRT__time32( buf );
673 }
674 #endif
675
676 /*********************************************************************
677  *              _daylight (MSVCRT.@)
678  */
679 int MSVCRT___daylight = 0;
680
681 /*********************************************************************
682  *              __p_daylight (MSVCRT.@)
683  */
684 int * CDECL MSVCRT___p__daylight(void)
685 {
686         return &MSVCRT___daylight;
687 }
688
689 /*********************************************************************
690  *              _dstbias (MSVCRT.@)
691  */
692 int MSVCRT__dstbias = 0;
693
694 /*********************************************************************
695  *              __p_dstbias (MSVCRT.@)
696  */
697 int * CDECL __p__dstbias(void)
698 {
699     return &MSVCRT__dstbias;
700 }
701
702 /*********************************************************************
703  *              _timezone (MSVCRT.@)
704  */
705 MSVCRT_long MSVCRT___timezone = 0;
706
707 /*********************************************************************
708  *              __p_timezone (MSVCRT.@)
709  */
710 MSVCRT_long * CDECL MSVCRT___p__timezone(void)
711 {
712         return &MSVCRT___timezone;
713 }
714
715 /*********************************************************************
716  *              _tzname (MSVCRT.@)
717  * NOTES
718  *  Some apps (notably Mozilla) insist on writing to these, so the buffer
719  *  must be large enough.  The size is picked based on observation of
720  *  Windows XP.
721  */
722 static char tzname_std[64] = "";
723 static char tzname_dst[64] = "";
724 char *MSVCRT__tzname[2] = { tzname_std, tzname_dst };
725
726 /*********************************************************************
727  *              __p_tzname (MSVCRT.@)
728  */
729 char ** CDECL __p__tzname(void)
730 {
731         return MSVCRT__tzname;
732 }
733
734 /*********************************************************************
735  *              _tzset (MSVCRT.@)
736  */
737 void CDECL MSVCRT__tzset(void)
738 {
739     tzset();
740 #if defined(HAVE_TIMEZONE) && defined(HAVE_DAYLIGHT)
741     MSVCRT___daylight = daylight;
742     MSVCRT___timezone = timezone;
743 #else
744     {
745         static const time_t seconds_in_year = (365 * 24 + 6) * 3600;
746         time_t t;
747         struct tm *tmp;
748         int zone_january, zone_july;
749
750         _mlock(_TIME_LOCK);
751         t = (time(NULL) / seconds_in_year) * seconds_in_year;
752         tmp = localtime(&t);
753         zone_january = -tmp->tm_gmtoff;
754         t += seconds_in_year / 2;
755         tmp = localtime(&t);
756         zone_july = -tmp->tm_gmtoff;
757         _munlock(_TIME_LOCK);
758
759         MSVCRT___daylight = (zone_january != zone_july);
760         MSVCRT___timezone = max(zone_january, zone_july);
761     }
762 #endif
763     lstrcpynA(tzname_std, tzname[0], sizeof(tzname_std));
764     tzname_std[sizeof(tzname_std) - 1] = '\0';
765     lstrcpynA(tzname_dst, tzname[1], sizeof(tzname_dst));
766     tzname_dst[sizeof(tzname_dst) - 1] = '\0';
767 }
768
769 /*********************************************************************
770  *              strftime (MSVCRT.@)
771  */
772 MSVCRT_size_t CDECL MSVCRT_strftime( char *str, MSVCRT_size_t max, const char *format,
773                                      const struct MSVCRT_tm *mstm )
774 {
775     struct tm tm;
776
777     msvcrt_tm_to_unix( &tm, mstm );
778     return strftime( str, max, format, &tm );
779 }
780
781 /*********************************************************************
782  *              wcsftime (MSVCRT.@)
783  */
784 MSVCRT_size_t CDECL MSVCRT_wcsftime( MSVCRT_wchar_t *str, MSVCRT_size_t max,
785                                      const MSVCRT_wchar_t *format, const struct MSVCRT_tm *mstm )
786 {
787     char *s, *fmt;
788     MSVCRT_size_t len;
789
790     TRACE("%p %ld %s %p\n", str, max, debugstr_w(format), mstm );
791
792     len = WideCharToMultiByte( CP_UNIXCP, 0, format, -1, NULL, 0, NULL, NULL );
793     if (!(fmt = MSVCRT_malloc( len ))) return 0;
794     WideCharToMultiByte( CP_UNIXCP, 0, format, -1, fmt, len, NULL, NULL );
795
796     if ((s = MSVCRT_malloc( max*4 )))
797     {
798         struct tm tm;
799         msvcrt_tm_to_unix( &tm, mstm );
800         if (!strftime( s, max*4, fmt, &tm )) s[0] = 0;
801         len = MultiByteToWideChar( CP_UNIXCP, 0, s, -1, str, max );
802         if (len) len--;
803         MSVCRT_free( s );
804     }
805     else len = 0;
806
807     MSVCRT_free( fmt );
808     return len;
809 }
810
811 /*********************************************************************
812  *              asctime (MSVCRT.@)
813  */
814 char * CDECL MSVCRT_asctime(const struct MSVCRT_tm *mstm)
815 {
816     char bufferA[30];
817     WCHAR bufferW[30];
818
819     thread_data_t *data = msvcrt_get_thread_data();
820     struct tm tm;
821
822     msvcrt_tm_to_unix( &tm, mstm );
823
824     if (!data->asctime_buffer)
825         data->asctime_buffer = MSVCRT_malloc( 30 ); /* ought to be enough */
826
827 #ifdef HAVE_ASCTIME_R
828     asctime_r( &tm, bufferA );
829 #else
830     strcpy( bufferA, asctime(&tm) );
831 #endif
832     MultiByteToWideChar( CP_UNIXCP, 0, bufferA, -1, bufferW, 30 );
833     WideCharToMultiByte( CP_ACP, 0, bufferW, -1, data->asctime_buffer, 30, NULL, NULL );
834     return data->asctime_buffer;
835 }
836
837 /*********************************************************************
838  *              _wasctime (MSVCRT.@)
839  */
840 MSVCRT_wchar_t * CDECL MSVCRT__wasctime(const struct MSVCRT_tm *mstm)
841 {
842     thread_data_t *data = msvcrt_get_thread_data();
843     struct tm tm;
844     char buffer[30];
845
846     msvcrt_tm_to_unix( &tm, mstm );
847
848     if (!data->wasctime_buffer)
849         data->wasctime_buffer = MSVCRT_malloc( 30*sizeof(MSVCRT_wchar_t) ); /* ought to be enough */
850 #ifdef HAVE_ASCTIME_R
851     asctime_r( &tm, buffer );
852 #else
853     strcpy( buffer, asctime(&tm) );
854 #endif
855     MultiByteToWideChar( CP_UNIXCP, 0, buffer, -1, data->wasctime_buffer, 30 );
856     return data->wasctime_buffer;
857 }
858
859 /*********************************************************************
860  *              _ctime64 (MSVCRT.@)
861  */
862 char * CDECL MSVCRT__ctime64(const MSVCRT___time64_t *time)
863 {
864     struct MSVCRT_tm *t;
865     t = MSVCRT__localtime64( time );
866     if (!t) return NULL;
867     return MSVCRT_asctime( t );
868 }
869
870 /*********************************************************************
871  *              _ctime32 (MSVCRT.@)
872  */
873 char * CDECL MSVCRT__ctime32(const MSVCRT___time32_t *time)
874 {
875     struct MSVCRT_tm *t;
876     t = MSVCRT__localtime32( time );
877     if (!t) return NULL;
878     return MSVCRT_asctime( t );
879 }
880
881 /*********************************************************************
882  *              ctime (MSVCRT.@)
883  */
884 #ifdef _WIN64
885 char * CDECL MSVCRT_ctime(const MSVCRT___time64_t *time)
886 {
887     return MSVCRT__ctime64( time );
888 }
889 #else
890 char * CDECL MSVCRT_ctime(const MSVCRT___time32_t *time)
891 {
892     return MSVCRT__ctime32( time );
893 }
894 #endif
895
896 /*********************************************************************
897  *              _wctime64 (MSVCRT.@)
898  */
899 MSVCRT_wchar_t * CDECL MSVCRT__wctime64(const MSVCRT___time64_t *time)
900 {
901     return MSVCRT__wasctime( MSVCRT__localtime64(time) );
902 }
903
904 /*********************************************************************
905  *              _wctime32 (MSVCRT.@)
906  */
907 MSVCRT_wchar_t * CDECL MSVCRT__wctime32(const MSVCRT___time32_t *time)
908 {
909     return MSVCRT__wasctime( MSVCRT__localtime32(time) );
910 }
911
912 /*********************************************************************
913  *              _wctime (MSVCRT.@)
914  */
915 #ifdef _WIN64
916 MSVCRT_wchar_t * CDECL MSVCRT__wctime(const MSVCRT___time64_t *time)
917 {
918     return MSVCRT__wctime64( time );
919 }
920 #else
921 MSVCRT_wchar_t * CDECL MSVCRT__wctime(const MSVCRT___time32_t *time)
922 {
923     return MSVCRT__wctime32( time );
924 }
925 #endif