os/ossrv/stdcpp/src/time_facets.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
 * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
sl@0
     3
 *
sl@0
     4
 * Copyright (c) 1999
sl@0
     5
 * Silicon Graphics Computer Systems, Inc.
sl@0
     6
 *
sl@0
     7
 * Copyright (c) 1999 
sl@0
     8
 * Boris Fomitchev
sl@0
     9
 *
sl@0
    10
 * This material is provided "as is", with absolutely no warranty expressed
sl@0
    11
 * or implied. Any use is at your own risk.
sl@0
    12
 *
sl@0
    13
 * Permission to use or copy this software for any purpose is hereby granted 
sl@0
    14
 * without fee, provided the above notices are retained on all copies.
sl@0
    15
 * Permission to modify the code and to distribute modified code is granted,
sl@0
    16
 * provided the above notices are retained, and a notice that the code was
sl@0
    17
 * modified is included with the above copyright notice.
sl@0
    18
 *
sl@0
    19
 */ 
sl@0
    20
sl@0
    21
sl@0
    22
#include "stlport_prefix.h"
sl@0
    23
#include <stl/_time_facets.h>
sl@0
    24
#include <stl/_istream.h>
sl@0
    25
#include "c_locale.h"
sl@0
    26
sl@0
    27
#if defined(__LIBSTD_CPP_SYMBIAN32_WSD__) || defined(_STLP_LIBSTD_CPP_NO_STATIC_VAR_)
sl@0
    28
#include "libstdcppwsd.h"
sl@0
    29
# endif
sl@0
    30
sl@0
    31
_STLP_BEGIN_NAMESPACE
sl@0
    32
sl@0
    33
/*char* _STLP_CALL
sl@0
    34
__write_integer(char* buf, ios_base::fmtflags flags, long x);*/
sl@0
    35
sl@0
    36
// The function copy_cstring is used to initialize a string
sl@0
    37
// with a C-style string.  Used to initialize the month and weekday
sl@0
    38
// tables in time_get and time_put.  Called only by _Init_timeinfo
sl@0
    39
// so its name does not require leading underscores.
sl@0
    40
sl@0
    41
static inline void copy_cstring(const char * s, string& v) {
sl@0
    42
  copy(s, s + strlen(s), back_insert_iterator<string >(v));
sl@0
    43
}
sl@0
    44
sl@0
    45
// default "C" values for month and day names
sl@0
    46
sl@0
    47
  const char default_dayname[][14] = {
sl@0
    48
    "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat",
sl@0
    49
    "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
sl@0
    50
    "Friday", "Saturday"};
sl@0
    51
sl@0
    52
  const char default_monthname[][24] = {
sl@0
    53
    "Jan", "Feb", "Mar", "Apr", "May", "Jun",
sl@0
    54
    "Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
sl@0
    55
    "January", "February", "March", "April", "May", "June",
sl@0
    56
    "July", "August", "September", "October", "November", "December"};
sl@0
    57
sl@0
    58
// _Init_time_info: initialize table with
sl@0
    59
// "C" values (note these are not defined in the C standard, so this
sl@0
    60
// is somewhat arbitrary).
sl@0
    61
sl@0
    62
_STLP_EXP_DECLSPEC void _STLP_CALL _Init_timeinfo(_Time_Info& table) {
sl@0
    63
  int i;
sl@0
    64
  for (i = 0; i < 14; ++i)
sl@0
    65
    copy_cstring(default_dayname[i], table._M_dayname[i]);
sl@0
    66
  for (i = 0; i < 24; ++i)
sl@0
    67
    copy_cstring(default_monthname[i], table._M_monthname[i]);
sl@0
    68
  copy_cstring("AM", table._M_am_pm[0]);
sl@0
    69
  copy_cstring("PM", table._M_am_pm[1]);
sl@0
    70
  copy_cstring("%H:%M:%S", table._M_time_format);
sl@0
    71
#ifdef __SYMBIAN32__
sl@0
    72
	copy_cstring("%m/%d/%Y",  table._M_date_format); //linux follows the same default. Y = year in 4 digit
sl@0
    73
#else  
sl@0
    74
  copy_cstring("%m/%d/%y",  table._M_date_format);
sl@0
    75
#endif  
sl@0
    76
  copy_cstring("%a %b %e %H:%M:%S %Y", table._M_date_time_format);
sl@0
    77
}
sl@0
    78
sl@0
    79
_STLP_EXP_DECLSPEC void _STLP_CALL _Init_timeinfo(_Time_Info& table, _Locale_time * time) {
sl@0
    80
  int i;
sl@0
    81
  for (i = 0; i < 7; ++i)
sl@0
    82
    copy_cstring(_Locale_abbrev_dayofweek(time, i),
sl@0
    83
		 table._M_dayname[i]);
sl@0
    84
  for (i = 0; i < 7; ++i)
sl@0
    85
    copy_cstring(_Locale_full_dayofweek(time, i),
sl@0
    86
		 table._M_dayname[i+7]); 
sl@0
    87
  for (i = 0; i < 12; ++i)
sl@0
    88
    copy_cstring(_Locale_abbrev_monthname(time, i),
sl@0
    89
		 table._M_monthname[i]);
sl@0
    90
  for (i = 0; i < 12; ++i)
sl@0
    91
    copy_cstring(_Locale_full_monthname(time, i),
sl@0
    92
		 table._M_monthname[i+12]);
sl@0
    93
  copy_cstring(_Locale_am_str(time),
sl@0
    94
		 table._M_am_pm[0]);
sl@0
    95
  copy_cstring(_Locale_pm_str(time),
sl@0
    96
	       table._M_am_pm[1]);
sl@0
    97
  copy_cstring(_Locale_t_fmt(time), table._M_time_format);
sl@0
    98
  copy_cstring(_Locale_d_fmt(time), table._M_date_format);
sl@0
    99
  copy_cstring(_Locale_d_t_fmt(time), table._M_date_time_format);
sl@0
   100
  copy_cstring(_Locale_long_d_fmt(time), table._M_long_date_format);
sl@0
   101
  copy_cstring(_Locale_long_d_t_fmt(time), table._M_long_date_time_format);
sl@0
   102
}
sl@0
   103
sl@0
   104
inline char* __subformat(string format, char*& buf, 
sl@0
   105
			 const _Time_Info&  table, const tm* t) {
sl@0
   106
  const char * cp = format.data();
sl@0
   107
  const char * cp_end = cp + format.size();
sl@0
   108
  while (cp != cp_end) {
sl@0
   109
    if (*cp == '%') {
sl@0
   110
  	  char mod = 0;
sl@0
   111
      ++cp;
sl@0
   112
      if(*cp == '#') {
sl@0
   113
        mod = *cp; ++cp;
sl@0
   114
      }
sl@0
   115
      buf = __write_formatted_time(buf, *cp++, mod, table, t);
sl@0
   116
    } else
sl@0
   117
      *buf++ = *cp++;
sl@0
   118
  }
sl@0
   119
  return buf;
sl@0
   120
}
sl@0
   121
sl@0
   122
/* The number of days from the first day of the first ISO week of this
sl@0
   123
   year to the year day YDAY with week day WDAY.  ISO weeks start on
sl@0
   124
   Monday; the first ISO week has the year's first Thursday.  YDAY may
sl@0
   125
   be as small as YDAY_MINIMUM.  */
sl@0
   126
#define __ISO_WEEK_START_WDAY 1 /* Monday */
sl@0
   127
#define __ISO_WEEK1_WDAY 4 /* Thursday */
sl@0
   128
#define __YDAY_MINIMUM (-366)
sl@0
   129
#define __TM_YEAR_BASE 1900
sl@0
   130
#if defined(__GNUC__)
sl@0
   131
static int
sl@0
   132
__iso_week_days (int yday, int wday)
sl@0
   133
{
sl@0
   134
  /* Add enough to the first operand of % to make it nonnegative.  */
sl@0
   135
  int big_enough_multiple_of_7 = (-__YDAY_MINIMUM / 7 + 2) * 7;
sl@0
   136
  return (yday
sl@0
   137
	  - (yday - wday + __ISO_WEEK1_WDAY + big_enough_multiple_of_7) % 7
sl@0
   138
	  + __ISO_WEEK1_WDAY - __ISO_WEEK_START_WDAY);
sl@0
   139
}
sl@0
   140
#endif
sl@0
   141
sl@0
   142
#define	__is_leap(year)	\
sl@0
   143
  ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0))
sl@0
   144
sl@0
   145
#define __hour12(hour) \
sl@0
   146
  (((hour) % 12 == 0) ? (12) : (hour) % 12)
sl@0
   147
sl@0
   148
_STLP_EXP_DECLSPEC char * __write_formatted_time(char* buf, char format, char modifier,
sl@0
   149
			      const _Time_Info& table, const tm* t) {
sl@0
   150
  switch(format) {
sl@0
   151
    case 'a':
sl@0
   152
      return copy(table._M_dayname[t->tm_wday].begin(),
sl@0
   153
	          table._M_dayname[t->tm_wday].end(),
sl@0
   154
	          buf);
sl@0
   155
sl@0
   156
    case 'A':
sl@0
   157
      return copy(table._M_dayname[t->tm_wday+7].begin(),
sl@0
   158
	          table._M_dayname[t->tm_wday+7].end(),
sl@0
   159
	          buf);
sl@0
   160
sl@0
   161
    case 'b':
sl@0
   162
      return copy(table._M_monthname[t->tm_mon].begin(),
sl@0
   163
	          table._M_monthname[t->tm_mon].end(),
sl@0
   164
	          buf);
sl@0
   165
sl@0
   166
    case 'B':
sl@0
   167
      return copy(table._M_monthname[t->tm_mon+12].begin(),
sl@0
   168
	     table._M_monthname[t->tm_mon+12].end(),
sl@0
   169
	     buf);
sl@0
   170
sl@0
   171
    case 'c': {
sl@0
   172
      const char * cp = (modifier != '#') ? table._M_date_time_format.data():\
sl@0
   173
      									   table._M_long_date_time_format.data();
sl@0
   174
      const char* cp_end = (modifier != '#') ? cp + table._M_date_time_format.size():\
sl@0
   175
      										  cp + table._M_long_date_time_format.size();
sl@0
   176
      char mod = 0;
sl@0
   177
      while (cp != cp_end) {
sl@0
   178
	if (*cp == '%') {
sl@0
   179
	  ++cp; if(*cp == '#') mod = *cp++; else mod = 0;
sl@0
   180
	  buf = __write_formatted_time(buf, *cp++, mod, table, t);
sl@0
   181
	}
sl@0
   182
	else
sl@0
   183
	  *buf++ = *cp++;
sl@0
   184
      }
sl@0
   185
      return buf;
sl@0
   186
    }
sl@0
   187
sl@0
   188
    case 'd': 
sl@0
   189
      sprintf(buf, (modifier != '#')?"%.2ld":"%ld", (long)t->tm_mday);
sl@0
   190
      return ((long)t->tm_mday < 10L && modifier == '#')?buf+1:buf + 2;
sl@0
   191
sl@0
   192
    case 'e':
sl@0
   193
      sprintf(buf, "%2ld", (long)t->tm_mday);
sl@0
   194
      return buf + 2;
sl@0
   195
sl@0
   196
    case 'H':
sl@0
   197
      sprintf(buf, (modifier != '#')?"%.2ld":"%ld", (long)t->tm_hour);
sl@0
   198
      return ((long)t->tm_hour < 10L && modifier == '#')?buf+1:buf + 2;
sl@0
   199
sl@0
   200
    case 'I':
sl@0
   201
      sprintf(buf, (modifier != '#')?"%.2ld":"%ld", (long)__hour12(t->tm_hour));
sl@0
   202
      return ((long)__hour12(t->tm_hour) < 10L && modifier == '#')?buf+1:buf + 2;
sl@0
   203
sl@0
   204
    case 'j':
sl@0
   205
      return __write_integer(buf, 0, (long)((long)t->tm_yday + 1));
sl@0
   206
sl@0
   207
    case 'm':
sl@0
   208
      sprintf(buf, (modifier != '#')?"%.2ld":"%ld", (long)t->tm_mon + 1);
sl@0
   209
      return ((long)(t->tm_mon + 1) < 10L && modifier == '#')?buf+1:buf + 2;
sl@0
   210
sl@0
   211
    case 'M':
sl@0
   212
      sprintf(buf, (modifier != '#')?"%.2ld":"%ld", (long)t->tm_min);
sl@0
   213
      return ((long)t->tm_min < 10L && modifier == '#')?buf+1:buf + 2;
sl@0
   214
sl@0
   215
    case 'p':
sl@0
   216
      return copy(table._M_am_pm[t->tm_hour/12].begin(),
sl@0
   217
	          table._M_am_pm[t->tm_hour/12].end(),
sl@0
   218
	   	  buf);
sl@0
   219
sl@0
   220
    case 'S': // pad with zeros
sl@0
   221
       sprintf(buf, (modifier != '#')?"%.2ld":"%ld", (long)t->tm_sec);
sl@0
   222
       return ((long)t->tm_sec < 10L && modifier == '#')?buf+1:buf + 2;
sl@0
   223
sl@0
   224
    case 'U':
sl@0
   225
      return __write_integer(buf, 0, 
sl@0
   226
			    long((t->tm_yday - t->tm_wday + 7) / 7));
sl@0
   227
      //      break;
sl@0
   228
sl@0
   229
    case 'w':
sl@0
   230
      return __write_integer(buf, 0, (long)t->tm_wday);
sl@0
   231
      //      break;
sl@0
   232
sl@0
   233
    case 'W':
sl@0
   234
      return __write_integer(buf, 0,
sl@0
   235
		             (long)(t->tm_wday == 0       ?
sl@0
   236
			      (t->tm_yday + 1) / 7 :
sl@0
   237
			      (t->tm_yday + 8 - t->tm_wday) / 7));
sl@0
   238
sl@0
   239
    case'x': {
sl@0
   240
      const char * cp = (modifier != '#') ? table._M_date_format.data():\
sl@0
   241
      									   table._M_long_date_format.data();
sl@0
   242
      const char* cp_end = (modifier != '#') ? cp + table._M_date_format.size():\
sl@0
   243
      										  cp + table._M_long_date_format.size();
sl@0
   244
      char mod = 0;
sl@0
   245
      while (cp != cp_end) {
sl@0
   246
	if (*cp == '%') {
sl@0
   247
	  ++cp; if(*cp == '#') mod = *cp++; else mod = 0;
sl@0
   248
	  buf = __write_formatted_time(buf, *cp++, mod, table, t);
sl@0
   249
	}
sl@0
   250
	else
sl@0
   251
	  *buf++ = *cp++;
sl@0
   252
      }
sl@0
   253
      return buf;
sl@0
   254
    }
sl@0
   255
sl@0
   256
    case 'X': {
sl@0
   257
      const char * cp = table._M_time_format.data();
sl@0
   258
      const char* cp_end = cp + table._M_time_format.size();
sl@0
   259
      char mod = 0;
sl@0
   260
      while (cp != cp_end) {
sl@0
   261
	if (*cp == '%') {
sl@0
   262
	  ++cp; if(*cp == '#') mod = *cp++; else mod = 0;
sl@0
   263
	  buf = __write_formatted_time(buf, *cp++, mod, table, t);
sl@0
   264
	}
sl@0
   265
	else
sl@0
   266
	  *buf++ = *cp++;
sl@0
   267
      }
sl@0
   268
      return buf;
sl@0
   269
    }
sl@0
   270
    case 'y':
sl@0
   271
      return __write_integer(buf, 0, (long)((long)(t->tm_year + 1900) % 100));
sl@0
   272
sl@0
   273
    case 'Y':
sl@0
   274
      return __write_integer(buf, 0, (long)((long)t->tm_year + 1900));
sl@0
   275
sl@0
   276
    case '%':
sl@0
   277
      *buf++ = '%';
sl@0
   278
      return buf;
sl@0
   279
sl@0
   280
#ifdef __GNUC__
sl@0
   281
sl@0
   282
      // fbp : at least on SUN 
sl@0
   283
# if defined ( _STLP_UNIX ) && ! defined (__linux__)
sl@0
   284
#  define __USE_BSD 1
sl@0
   285
# endif
sl@0
   286
 
sl@0
   287
   /*********************************************
sl@0
   288
    *     JGS, handle various extensions        *
sl@0
   289
    *********************************************/
sl@0
   290
sl@0
   291
    case 'h': /* POSIX.2 extension */
sl@0
   292
      // same as 'b', abbrev month name
sl@0
   293
      return copy(table._M_monthname[t->tm_mon].begin(),
sl@0
   294
	          table._M_monthname[t->tm_mon].end(),
sl@0
   295
	          buf);
sl@0
   296
sl@0
   297
    case 'C': /* POSIX.2 extension */
sl@0
   298
      // same as 'd', the day 
sl@0
   299
      sprintf(buf, "%2ld", (long)t->tm_mday);
sl@0
   300
      return buf + 2;
sl@0
   301
sl@0
   302
    case 'D': /* POSIX.2 extension */
sl@0
   303
      // same as 'x'
sl@0
   304
      return __subformat(table._M_date_format, buf, table, t);
sl@0
   305
sl@0
   306
    case 'k': /* GNU extension */
sl@0
   307
      sprintf(buf, "%2ld", (long)t->tm_hour);
sl@0
   308
      return buf + 2;
sl@0
   309
sl@0
   310
    case 'l': /* GNU extension */
sl@0
   311
      sprintf(buf, "%2ld", (long)t->tm_hour % 12);
sl@0
   312
      return buf + 2;
sl@0
   313
sl@0
   314
    case 'n': /* POSIX.2 extension */
sl@0
   315
      *buf++ = '\n';
sl@0
   316
      return buf;
sl@0
   317
sl@0
   318
    case 'R': /* GNU extension */
sl@0
   319
      return __subformat("%H:%M", buf, table, t);
sl@0
   320
sl@0
   321
    case 'r': /* POSIX.2 extension */
sl@0
   322
      return __subformat("%I:%M:%S %p", buf, table, t);
sl@0
   323
sl@0
   324
    case 'T': /* POSIX.2 extension.  */
sl@0
   325
      return __subformat("%H:%M:%S", buf, table, t);
sl@0
   326
sl@0
   327
    case 't': /* POSIX.2 extension.  */
sl@0
   328
      *buf++ = '\t';
sl@0
   329
      return buf;
sl@0
   330
sl@0
   331
    case 'u': /* POSIX.2 extension.  */
sl@0
   332
      return __write_integer(buf, 0, long((t->tm_wday - 1 + 7)) % 7 + 1);
sl@0
   333
sl@0
   334
    case 's': {
sl@0
   335
      time_t __t;
sl@0
   336
      __t = mktime ((tm*)t);
sl@0
   337
      return __write_integer(buf, 0, (long)__t );
sl@0
   338
    }
sl@0
   339
    case 'g': /* GNU extension */
sl@0
   340
    case 'G': {
sl@0
   341
      int year = t->tm_year + __TM_YEAR_BASE;
sl@0
   342
      int days = __iso_week_days (t->tm_yday, t->tm_wday);
sl@0
   343
      if (days < 0) {
sl@0
   344
	  /* This ISO week belongs to the previous year.  */
sl@0
   345
	  year--;
sl@0
   346
	  days = __iso_week_days (t->tm_yday + (365 + __is_leap (year)),
sl@0
   347
				t->tm_wday);
sl@0
   348
      } else {
sl@0
   349
	int d = __iso_week_days (t->tm_yday - (365 + __is_leap (year)),
sl@0
   350
			       t->tm_wday);
sl@0
   351
	if (0 <= d) {
sl@0
   352
	  /* This ISO week belongs to the next year.  */
sl@0
   353
	  year++;
sl@0
   354
	  days = d;
sl@0
   355
	}
sl@0
   356
      }
sl@0
   357
      switch (format) {
sl@0
   358
      case 'g':
sl@0
   359
	return __write_integer(buf, 0, (long)(year % 100 + 100) % 100);
sl@0
   360
      case 'G':
sl@0
   361
	return __write_integer(buf, 0, (long)year);
sl@0
   362
      default:
sl@0
   363
	return __write_integer(buf, 0, (long)days / 7 + 1);
sl@0
   364
      }
sl@0
   365
    }
sl@0
   366
sl@0
   367
# if defined ( _STLP_USE_GLIBC  ) && ! defined (__CYGWIN__)
sl@0
   368
    case 'z':		/* GNU extension.  */
sl@0
   369
      if (t->tm_isdst < 0)
sl@0
   370
	break;
sl@0
   371
      {
sl@0
   372
	int diff;
sl@0
   373
#if defined(__USE_BSD) || defined(__BEOS__)
sl@0
   374
	diff = t->tm_gmtoff;
sl@0
   375
#else
sl@0
   376
	diff = t->__tm_gmtoff;
sl@0
   377
#endif	
sl@0
   378
	if (diff < 0) {
sl@0
   379
	  *buf++ = '-';
sl@0
   380
	  diff = -diff;
sl@0
   381
	} else
sl@0
   382
	  *buf++ = '+';
sl@0
   383
	
sl@0
   384
	diff /= 60;
sl@0
   385
	sprintf(buf, "%.4d", (diff / 60) * 100 + diff % 60);
sl@0
   386
	return buf + 4;
sl@0
   387
      }
sl@0
   388
# endif /* __GLIBC__ */
sl@0
   389
#endif /* __GNUC__ */
sl@0
   390
sl@0
   391
    default:
sl@0
   392
      //      return buf;
sl@0
   393
      break;
sl@0
   394
  }
sl@0
   395
  return buf;
sl@0
   396
}
sl@0
   397
sl@0
   398
_STLP_EXP_DECLSPEC  time_base::dateorder _STLP_CALL
sl@0
   399
__get_date_order(_Locale_time* time)
sl@0
   400
{
sl@0
   401
  const char * fmt = _Locale_d_fmt(time);
sl@0
   402
  char first, second, third;
sl@0
   403
sl@0
   404
  while (*fmt != 0 && *fmt != '%') ++fmt;
sl@0
   405
  if (*fmt == 0)
sl@0
   406
    return time_base::no_order;
sl@0
   407
  first = *++fmt;
sl@0
   408
  while (*fmt != 0 && *fmt != '%') ++fmt;
sl@0
   409
  if (*fmt == 0)
sl@0
   410
    return time_base::no_order;
sl@0
   411
  second = *++fmt;
sl@0
   412
  while (*fmt != 0 && *fmt != '%') ++fmt;
sl@0
   413
  if (*fmt == 0)
sl@0
   414
    return time_base::no_order;
sl@0
   415
  third = *++fmt;
sl@0
   416
sl@0
   417
  switch (first) {
sl@0
   418
    case 'd':
sl@0
   419
      return (second == 'm' && third == 'y') ? time_base::dmy
sl@0
   420
					     : time_base::no_order;
sl@0
   421
    case 'm':
sl@0
   422
      return (second == 'd' && third == 'y') ? time_base::mdy
sl@0
   423
					     : time_base::no_order;
sl@0
   424
    case 'y':
sl@0
   425
      switch (second) {
sl@0
   426
	case 'd':
sl@0
   427
	  return third == 'm' ? time_base::ydm : time_base::no_order;
sl@0
   428
        case 'm':
sl@0
   429
	  return third == 'd' ? time_base::ymd : time_base::no_order;
sl@0
   430
	default:
sl@0
   431
	  return time_base::no_order;
sl@0
   432
      }
sl@0
   433
    default:
sl@0
   434
      return time_base::no_order;
sl@0
   435
  }
sl@0
   436
}
sl@0
   437
sl@0
   438
#if !defined(_STLP_NO_FORCE_INSTANTIATE)
sl@0
   439
template class time_get<char, istreambuf_iterator<char, char_traits<char> > >;
sl@0
   440
// template class time_get<char, const char*>;
sl@0
   441
template class time_put<char, ostreambuf_iterator<char, char_traits<char> > >;
sl@0
   442
// template class time_put<char, char*>;
sl@0
   443
sl@0
   444
#ifndef _STLP_NO_WCHAR_T
sl@0
   445
template class time_get<wchar_t, istreambuf_iterator<wchar_t, char_traits<wchar_t> > >;
sl@0
   446
// template class time_get<wchar_t, const wchar_t*>;
sl@0
   447
template class time_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >;
sl@0
   448
// template class time_put<wchar_t, wchar_t*>;
sl@0
   449
#endif /* INSTANTIATE_WIDE_STREAMS */
sl@0
   450
sl@0
   451
#endif
sl@0
   452
sl@0
   453
_STLP_END_NAMESPACE