1 .\" Copyright (c) 1989, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" This code is derived from software contributed to Berkeley by
5 .\" the American National Standards Committee X3, on Information
6 .\" Processing Systems.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\" notice, this list of conditions and the following disclaimer in the
15 .\" documentation and/or other materials provided with the distribution.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)strftime.3 8.1 (Berkeley) 6/4/93
33 .\" $FreeBSD: src/lib/libc/stdtime/strftime.3,v 1.40 2008/05/16 04:33:04 grog Exp $
41 .Nd format date and time
48 .Fa "char *restrict s"
50 .Fa "const char *restrict format"
51 .Fa "const struct tm *restrict timeptr"
57 .Fa "char *restrict s"
59 .Fa "const char *restrict format"
60 .Fa "const struct tm *restrict timeptr"
66 function formats the information from
70 according to the string pointed to by
75 string consists of zero or more conversion specifications and
77 All ordinary characters are copied directly into the buffer.
78 A conversion specification consists of a percent sign
80 and one other character.
84 characters will be placed into the array.
85 If the total number of resulting characters, including the terminating
86 NUL character, is not more than
89 returns the number of characters in the array, not counting the
91 Otherwise, zero is returned and the buffer contents are indeterminate.
95 function uses the current locale, the
97 function may be passed a locale directly. See
101 The conversion specifications are copied to the buffer after expansion
103 .Bl -tag -width "xxxx"
105 is replaced by national representation of the full weekday name.
107 is replaced by national representation of
108 the abbreviated weekday name.
110 is replaced by national representation of the full month name.
112 is replaced by national representation of
113 the abbreviated month name.
115 is replaced by (year / 100) as decimal number; single
116 digits are preceded by a zero.
118 is replaced by national representation of time and date.
123 is replaced by the day of the month as a decimal number (01-31).
125 POSIX locale extensions.
127 %Ec %EC %Ex %EX %Ey %EY
128 %Od %Oe %OH %OI %Om %OM
129 %OS %Ou %OU %OV %Ow %OW %Oy
130 are supposed to provide alternate
133 Additionally %OB implemented
134 to represent alternative months names
135 (used standalone, without day mentioned).
137 is replaced by the day of the month as a decimal number (1-31); single
138 digits are preceded by a blank.
143 is replaced by a year as a decimal number with century.
144 This year is the one that contains the greater part of
145 the week (Monday as the first day of the week).
147 is replaced by the same year as in
149 but as a decimal number without century (00-99).
151 is replaced by the hour (24-hour clock) as a decimal number (00-23).
156 is replaced by the hour (12-hour clock) as a decimal number (01-12).
158 is replaced by the day of the year as a decimal number (001-366).
160 is replaced by the hour (24-hour clock) as a decimal number (0-23);
161 single digits are preceded by a blank.
163 is replaced by the hour (12-hour clock) as a decimal number (1-12);
164 single digits are preceded by a blank.
166 is replaced by the minute as a decimal number (00-59).
168 is replaced by the month as a decimal number (01-12).
170 is replaced by a newline.
175 is replaced by national representation of either
176 "ante meridiem" (a.m.)
178 "post meridiem" (p.m.)
187 is replaced by the second as a decimal number (00-60).
189 is replaced by the number of seconds since the Epoch, UTC (see
195 is replaced by a tab.
197 is replaced by the week number of the year (Sunday as the first day of
198 the week) as a decimal number (00-53).
200 is replaced by the weekday (Monday as the first day of the week)
201 as a decimal number (1-7).
203 is replaced by the week number of the year (Monday as the first day of
204 the week) as a decimal number (01-53).
205 If the week containing January
206 1 has four or more days in the new year, then it is week 1; otherwise
207 it is the last week of the previous year, and the next week is week 1.
212 is replaced by the week number of the year (Monday as the first day of
213 the week) as a decimal number (00-53).
215 is replaced by the weekday (Sunday as the first day of the week)
216 as a decimal number (0-6).
218 is replaced by national representation of the time.
220 is replaced by national representation of the date.
222 is replaced by the year with century as a decimal number.
224 is replaced by the year without century as a decimal number (00-99).
226 is replaced by the time zone name.
228 is replaced by the time zone offset from UTC; a leading plus sign stands for
229 east of UTC, a minus sign for west of UTC, hours and minutes follow
230 with two digits each and no delimiter between them (common form for
231 RFC 822 date headers).
233 is replaced by national representation of the date and time
234 (the format is similar to that produced by
238 Do not do any padding when performing numerical outputs.
241 Explicitly specify space for padding.
244 Explicitly specify zero for padding.
263 with a lot of extensions including
286 The peculiar week number and year in the replacements of
291 are defined in ISO 8601: 1988.
293 There is no conversion specification for the phase of the moon.
297 function does not correctly handle multibyte characters in the