1 /* strftime - custom formatting of date and/or time
2 Copyright (C) 1989, 1991, 1992 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
18 /* Note: this version of strftime lacks locale support,
21 Performs `%' substitutions similar to those in printf. Except
22 where noted, substituted fields have a fixed size; numeric fields are
23 padded if necessary. Padding is with zeros by default; for fields
24 that display a single number, padding can be changed or inhibited by
25 following the `%' with one of the modifiers described below. Unknown
26 field specifiers are copied as normal characters. All other
27 characters are copied to the output without change.
29 Supports a superset of the ANSI C field specifiers.
31 Literal character fields:
36 Numeric modifiers (a nonstandard extension):
37 - do not pad the field
38 _ pad the field with spaces
47 %r time, 12-hour (hh:mm:ss [AP]M)
48 %R time, 24-hour (hh:mm)
50 %T time, 24-hour (hh:mm:ss)
51 %X locale's time representation (%H:%M:%S)
52 %Z time zone (EDT), or nothing if no time zone is determinable
55 %a locale's abbreviated weekday name (Sun..Sat)
56 %A locale's full weekday name, variable length (Sunday..Saturday)
57 %b locale's abbreviated month name (Jan..Dec)
58 %B locale's full month name, variable length (January..December)
59 %c locale's date and time (Sat Nov 04 12:02:33 EST 1989)
61 %d day of month (01..31)
62 %e day of month ( 1..31)
65 %j day of year (001..366)
67 %U week number of year with Sunday as first day of week (00..53)
69 %W week number of year with Monday as first day of week (00..53)
70 %x locale's date representation (mm/dd/yy)
71 %y last two digits of year (00..99)
74 David MacKenzie <djm@gnu.ai.mit.edu> */
77 #if defined (CONFIG_BROKETS)
78 /* We use <config.h> instead of "config.h" so that a compilation
79 using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
80 (which it would do because it found this file in $srcdir). */
87 #include <sys/types.h>
88 #if defined(TM_IN_SYS_TIME) || (!defined(HAVE_TM_ZONE) && !defined(HAVE_TZNAME))
94 #if defined(HAVE_TZNAME)
95 extern char *tzname
[2];
98 /* Types of padding for numbers in date and time. */
104 static char const* const days
[] =
106 "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"
109 static char const * const months
[] =
111 "January", "February", "March", "April", "May", "June",
112 "July", "August", "September", "October", "November", "December"
115 /* Add character C to STRING and increment LENGTH,
116 unless LENGTH would exceed MAX. */
118 #define add_char(c) \
121 if (length + 1 <= max) \
122 string[length++] = (c); \
126 /* Add a 2 digit number to STRING, padding if specified.
127 Return the number of characters added, up to MAX. */
130 add_num2 (string
, num
, max
, pad
)
139 if (top
== 0 && pad
== blank
)
141 else if (top
!= 0 || pad
== zero
)
142 add_char (top
+ '0');
143 add_char (num
% 10 + '0');
147 /* Add a 3 digit number to STRING, padding if specified.
148 Return the number of characters added, up to MAX. */
151 add_num3 (string
, num
, max
, pad
)
158 int mid
= (num
- top
* 100) / 10;
161 if (top
== 0 && pad
== blank
)
163 else if (top
!= 0 || pad
== zero
)
164 add_char (top
+ '0');
165 if (mid
== 0 && top
== 0 && pad
== blank
)
167 else if (mid
!= 0 || top
!= 0 || pad
== zero
)
168 add_char (mid
+ '0');
169 add_char (num
% 10 + '0');
173 /* Like strncpy except return the number of characters copied. */
176 add_str (to
, from
, max
)
183 for (i
= 0; from
[i
] && i
<= max
; ++i
)
188 /* Return the week in the year of the time in TM, with the weeks
189 starting on Sundays. */
197 /* Set `dl' to the day in the year of the last day of the week previous
198 to the one containing the day specified in TM. If the day specified
199 in TM is in the first week of the year, `dl' will be negative or 0.
200 Otherwise, calculate the number of complete weeks before our week
201 (dl / 7) and add any partial week at the start of the year (dl % 7). */
202 dl
= tm
->tm_yday
- tm
->tm_wday
;
203 return dl
<= 0 ? 0 : dl
/ 7 + (dl
% 7 != 0);
206 /* Return the week in the year of the time in TM, with the weeks
207 starting on Mondays. */
215 if (tm
->tm_wday
== 0)
218 wday
= tm
->tm_wday
- 1;
219 dl
= tm
->tm_yday
- wday
;
220 return dl
<= 0 ? 0 : dl
/ 7 + (dl
% 7 != 0);
223 #if !defined(HAVE_TM_ZONE) && !defined(HAVE_TZNAME)
232 gettimeofday (&tv
, &tz
);
233 return timezone (tz
.tz_minuteswest
, tp
->tm_isdst
);
237 /* Format the time given in TM according to FORMAT, and put the
239 Return the number of characters (not including terminating null)
240 that were put into STRING, or 0 if the length would have
244 strftime (string
, max
, format
, tm
)
250 enum padding pad
; /* Type of padding to apply. */
251 size_t length
= 0; /* Characters put in STRING so far. */
253 for (; *format
&& length
< max
; ++format
)
266 else if (*format
== '_')
276 /* Literal character fields: */
295 add_num2 (&string
[length
], tm
->tm_hour
, max
- length
,
296 *format
== 'H' ? pad
: blank
);
303 if (tm
->tm_hour
== 0)
305 else if (tm
->tm_hour
> 12)
306 hour12
= tm
->tm_hour
- 12;
308 hour12
= tm
->tm_hour
;
310 add_num2 (&string
[length
], hour12
, max
- length
,
311 *format
== 'I' ? pad
: blank
);
316 add_num2 (&string
[length
], tm
->tm_min
, max
- length
, pad
);
319 if (tm
->tm_hour
< 12)
327 strftime (&string
[length
], max
- length
, "%I:%M:%S %p", tm
);
331 strftime (&string
[length
], max
- length
, "%H:%M", tm
);
335 add_num2 (&string
[length
], tm
->tm_sec
, max
- length
, pad
);
339 strftime (&string
[length
], max
- length
, "%H:%M:%S", tm
);
343 strftime (&string
[length
], max
- length
, "%H:%M:%S", tm
);
347 length
+= add_str (&string
[length
], tm
->tm_zone
, max
- length
);
350 if (tm
->tm_isdst
&& tzname
[1] && *tzname
[1])
351 length
+= add_str (&string
[length
], tzname
[1], max
- length
);
353 length
+= add_str (&string
[length
], tzname
[0], max
- length
);
355 length
+= add_str (&string
[length
], zone_name (tm
), max
- length
);
362 add_char (days
[tm
->tm_wday
][0]);
363 add_char (days
[tm
->tm_wday
][1]);
364 add_char (days
[tm
->tm_wday
][2]);
368 add_str (&string
[length
], days
[tm
->tm_wday
], max
- length
);
372 add_char (months
[tm
->tm_mon
][0]);
373 add_char (months
[tm
->tm_mon
][1]);
374 add_char (months
[tm
->tm_mon
][2]);
378 add_str (&string
[length
], months
[tm
->tm_mon
], max
- length
);
382 strftime (&string
[length
], max
- length
,
383 "%a %b %d %H:%M:%S %Z %Y", tm
);
387 add_num2 (&string
[length
], (tm
->tm_year
+ 1900) / 100,
392 add_num2 (&string
[length
], tm
->tm_mday
, max
- length
, pad
);
396 add_num2 (&string
[length
], tm
->tm_mday
, max
- length
, blank
);
400 strftime (&string
[length
], max
- length
, "%m/%d/%y", tm
);
404 add_num3 (&string
[length
], tm
->tm_yday
+ 1, max
- length
, pad
);
408 add_num2 (&string
[length
], tm
->tm_mon
+ 1, max
- length
, pad
);
412 add_num2 (&string
[length
], sun_week (tm
), max
- length
, pad
);
415 add_char (tm
->tm_wday
+ '0');
419 add_num2 (&string
[length
], mon_week (tm
), max
- length
, pad
);
423 strftime (&string
[length
], max
- length
, "%m/%d/%y", tm
);
427 add_num2 (&string
[length
], tm
->tm_year
% 100,
431 add_char ((tm
->tm_year
+ 1900) / 1000 + '0');
433 add_num3 (&string
[length
],
434 (1900 + tm
->tm_year
) % 1000, max
- length
, zero
);