annotate src/strftime.c @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 4be1180a9e89
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* strftime - custom formatting of date and/or time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1989, 1991, 1992 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This program is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 along with this program; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 /* Synched up with: FSF 19.30. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Note: this version of strftime lacks locale support,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 but it is standalone.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 Performs `%' substitutions similar to those in printf. Except
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 where noted, substituted fields have a fixed size; numeric fields are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 padded if necessary. Padding is with zeros by default; for fields
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 that display a single number, padding can be changed or inhibited by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 following the `%' with one of the modifiers described below. Unknown
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 field specifiers are copied as normal characters. All other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 characters are copied to the output without change.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 Supports a superset of the ANSI C field specifiers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 Literal character fields:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 % %
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 n newline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 t tab
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 Numeric modifiers (a nonstandard extension):
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 - do not pad the field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 _ pad the field with spaces
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 Time fields:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 %H hour (00..23)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 %I hour (01..12)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 %k hour ( 0..23)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 %l hour ( 1..12)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 %M minute (00..59)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 %p locale's AM or PM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 %r time, 12-hour (hh:mm:ss [AP]M)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 %R time, 24-hour (hh:mm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 %s time in seconds since 00:00:00, Jan 1, 1970 (a nonstandard extension)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 %S second (00..61)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 %T time, 24-hour (hh:mm:ss)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 %X locale's time representation (%H:%M:%S)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 %Z time zone (EDT), or nothing if no time zone is determinable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 Date fields:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 %a locale's abbreviated weekday name (Sun..Sat)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 %A locale's full weekday name, variable length (Sunday..Saturday)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 %b locale's abbreviated month name (Jan..Dec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 %B locale's full month name, variable length (January..December)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 %C century (00..99)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 %d day of month (01..31)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 %e day of month ( 1..31)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 %D date (mm/dd/yy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 %h same as %b
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 %j day of year (001..366)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 %m month (01..12)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 %U week number of year with Sunday as first day of week (00..53)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 %w day of week (0..6)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 %W week number of year with Monday as first day of week (00..53)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 %x locale's date representation (mm/dd/yy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 %y last two digits of year (00..99)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 %Y year (1970...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 David MacKenzie <djm@gnu.ai.mit.edu> */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 #ifdef HAVE_CONFIG_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 #include <stdio.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 #include <sys/types.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 #if defined(TM_IN_SYS_TIME) || (!defined(HAVE_TM_ZONE) && !defined(HAVE_TZNAME))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 #include <sys/time.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 #include <time.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 #ifndef STDC_HEADERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 time_t mktime ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 #if defined(HAVE_TZNAME)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 extern char *tzname[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 #define strftime emacs_strftime
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 /* Types of padding for numbers in date and time. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 enum padding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 none, blank, zero
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 static char CONST* CONST days[] =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 static char CONST * CONST months[] =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 "January", "February", "March", "April", "May", "June",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 "July", "August", "September", "October", "November", "December"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 /* Add character C to STRING and increment LENGTH,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 unless LENGTH would exceed MAX. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 #define add_char(c) do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 if (length + 1 <= max) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 string[length++] = (c); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 /* Add a 2 digit number to STRING, padding if specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 Return the number of characters added, up to MAX. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 add_num2 (char *string, int num, int max, enum padding pad)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 int top = num / 10;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 int length = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 if (top == 0 && pad == blank)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 add_char (' ');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 else if (top != 0 || pad == zero)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 add_char (top + '0');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 add_char (num % 10 + '0');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 return length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 /* Add a 3 digit number to STRING, padding if specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 Return the number of characters added, up to MAX. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 add_num3 (char *string, int num, int max, enum padding pad)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 int top = num / 100;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 int mid = (num - top * 100) / 10;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 int length = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 if (top == 0 && pad == blank)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 add_char (' ');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 else if (top != 0 || pad == zero)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 add_char (top + '0');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 if (mid == 0 && top == 0 && pad == blank)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 add_char (' ');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 else if (mid != 0 || top != 0 || pad == zero)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 add_char (mid + '0');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 add_char (num % 10 + '0');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 return length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 /* Like strncpy except return the number of characters copied. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 add_str (char *to, CONST char *from, int max)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 for (i = 0; from[i] && i <= max; ++i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 to[i] = from[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 return i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 add_num_time_t (char *string, int max, time_t num)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 /* This buffer is large enough to hold the character representation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (including the trailing NUL) of any unsigned decimal quantity
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 whose binary representation fits in 128 bits. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 char buf[40];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 int length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 if (sizeof (num) > 16)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 sprintf (buf, "%lu", (unsigned long) num);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 length = add_str (string, buf, max);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 return length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 /* Return the week in the year of the time in TM, with the weeks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 starting on Sundays. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 sun_week (CONST struct tm *tm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 int dl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 /* Set `dl' to the day in the year of the last day of the week previous
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 to the one containing the day specified in TM. If the day specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 in TM is in the first week of the year, `dl' will be negative or 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 Otherwise, calculate the number of complete weeks before our week
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (dl / 7) and add any partial week at the start of the year (dl % 7). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 dl = tm->tm_yday - tm->tm_wday;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 return dl <= 0 ? 0 : dl / 7 + (dl % 7 != 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 /* Return the week in the year of the time in TM, with the weeks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 starting on Mondays. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 mon_week (CONST struct tm *tm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 int dl, wday;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 if (tm->tm_wday == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 wday = 6;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 wday = tm->tm_wday - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 dl = tm->tm_yday - wday;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 return dl <= 0 ? 0 : dl / 7 + (dl % 7 != 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 #if !defined(HAVE_TM_ZONE) && !defined(HAVE_TZNAME)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 zone_name (struct tm *tp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 char *timezone ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 struct timeval tv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 struct timezone tz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 gettimeofday (&tv, &tz);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 return timezone (tz.tz_minuteswest, tp->tm_isdst);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 /* Format the time given in TM according to FORMAT, and put the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 results in STRING.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 Return the number of characters (not including terminating null)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 that were put into STRING, or 0 if the length would have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 exceeded MAX. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 size_t strftime (char *string, size_t max, CONST char *format,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 CONST struct tm *tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 size_t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 strftime (char *string, size_t max, CONST char *format, CONST struct tm *tm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 enum padding pad; /* Type of padding to apply. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 size_t length = 0; /* Characters put in STRING so far. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 for (; *format && length < max; ++format)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 if (*format != '%')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 add_char (*format);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 ++format;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 /* Modifiers: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 if (*format == '-')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 pad = none;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 ++format;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 else if (*format == '_')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 pad = blank;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 ++format;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 pad = zero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 switch (*format)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 /* Literal character fields: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 case 0:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 case '%':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 add_char ('%');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 case 'n':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 add_char ('\n');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 case 't':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 add_char ('\t');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 add_char (*format);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 /* Time fields: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 case 'H':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 case 'k':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 add_num2 (&string[length], tm->tm_hour, max - length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 *format == 'H' ? pad : blank);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 case 'I':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 case 'l':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 int hour12;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 if (tm->tm_hour == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 hour12 = 12;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 else if (tm->tm_hour > 12)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 hour12 = tm->tm_hour - 12;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 hour12 = tm->tm_hour;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 add_num2 (&string[length], hour12, max - length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 *format == 'I' ? pad : blank);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 case 'M':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 add_num2 (&string[length], tm->tm_min, max - length, pad);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 case 'p':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 if (tm->tm_hour < 12)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 add_char ('A');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 add_char ('P');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 add_char ('M');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 case 'r':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 strftime (&string[length], max - length, "%I:%M:%S %p", tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 case 'R':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 strftime (&string[length], max - length, "%H:%M", tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 case 's':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 struct tm writable_tm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 writable_tm = *tm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 length += add_num_time_t (&string[length], max - length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 mktime (&writable_tm));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 case 'S':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 add_num2 (&string[length], tm->tm_sec, max - length, pad);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 case 'T':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 strftime (&string[length], max - length, "%H:%M:%S", tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 case 'X':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 strftime (&string[length], max - length, "%H:%M:%S", tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 case 'Z':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 #ifdef HAVE_TM_ZONE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 length += add_str (&string[length], tm->tm_zone, max - length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 #ifdef HAVE_TZNAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 if (tm->tm_isdst && tzname[1] && *tzname[1])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 length += add_str (&string[length], tzname[1], max - length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 length += add_str (&string[length], tzname[0], max - length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 length += add_str (&string[length], zone_name (tm), max - length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 /* Date fields: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 case 'a':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 add_char (days[tm->tm_wday][0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 add_char (days[tm->tm_wday][1]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 add_char (days[tm->tm_wday][2]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 case 'A':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 add_str (&string[length], days[tm->tm_wday], max - length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 case 'b':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 case 'h':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 add_char (months[tm->tm_mon][0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 add_char (months[tm->tm_mon][1]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 add_char (months[tm->tm_mon][2]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 case 'B':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 add_str (&string[length], months[tm->tm_mon], max - length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 case 'c':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 strftime (&string[length], max - length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 "%a %b %d %H:%M:%S %Z %Y", tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 case 'C':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 add_num2 (&string[length], (tm->tm_year + 1900) / 100,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 max - length, pad);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 case 'd':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 add_num2 (&string[length], tm->tm_mday, max - length, pad);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 case 'e':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 add_num2 (&string[length], tm->tm_mday, max - length, blank);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 case 'D':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 strftime (&string[length], max - length, "%m/%d/%y", tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 case 'j':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 add_num3 (&string[length], tm->tm_yday + 1, max - length, pad);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 case 'm':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 add_num2 (&string[length], tm->tm_mon + 1, max - length, pad);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 case 'U':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 add_num2 (&string[length], sun_week (tm), max - length, pad);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 case 'w':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 add_char (tm->tm_wday + '0');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 case 'W':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 add_num2 (&string[length], mon_week (tm), max - length, pad);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 case 'x':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 strftime (&string[length], max - length, "%m/%d/%y", tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 case 'y':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 add_num2 (&string[length], tm->tm_year % 100,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 max - length, pad);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 case 'Y':
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 add_char ((tm->tm_year + 1900) / 1000 + '0');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 length +=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 add_num3 (&string[length],
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (1900 + tm->tm_year) % 1000, max - length, zero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 add_char (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 return length - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 }