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 .\" 3. All advertising materials mentioning features or use of this software
17 .\" must display the following acknowledgement:
18 .\" This product includes software developed by the University of
19 .\" California, Berkeley and its contributors.
20 .\" 4. Neither the name of the University nor the names of its contributors
21 .\" may be used to endorse or promote products derived from this software
22 .\" without specific prior written permission.
24 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 .\" @(#)strftime.3 8.1 (Berkeley) 6/4/93
37 .\" $FreeBSD: src/lib/libc/stdtime/strftime.3,v 1.34 2004/07/02 23:52:12 ru Exp $
45 .Nd format date and time
52 .Fa "char *restrict s"
54 .Fa "const char *restrict format"
55 .Fa "const struct tm *restrict timeptr"
61 .Fa "char *restrict s"
63 .Fa "const char *restrict format"
64 .Fa "const struct tm *restrict timeptr"
70 function formats the information from
74 according to the string pointed to by
79 string consists of zero or more conversion specifications and
81 All ordinary characters are copied directly into the buffer.
82 A conversion specification consists of a percent sign
84 and one other character.
88 characters will be placed into the array.
89 If the total number of resulting characters, including the terminating
90 NUL character, is not more than
93 returns the number of characters in the array, not counting the
95 Otherwise, zero is returned and the buffer contents are indeterminate.
99 function uses the current locale, the
101 function may be passed a locale directly. See
103 for more information.
105 The conversion specifications are copied to the buffer after expansion
107 .Bl -tag -width "xxxx"
109 is replaced by national representation of the full weekday name.
111 is replaced by national representation of
112 the abbreviated weekday name.
114 is replaced by national representation of the full month name.
116 is replaced by national representation of
117 the abbreviated month name.
119 is replaced by (year / 100) as decimal number; single
120 digits are preceded by a zero.
122 is replaced by national representation of time and date.
127 is replaced by the day of the month as a decimal number (01-31).
128 .It Cm \&%E* Cm \&%O*
129 POSIX locale extensions.
131 %Ec %EC %Ex %EX %Ey %EY
132 %Od %Oe %OH %OI %Om %OM
133 %OS %Ou %OU %OV %Ow %OW %Oy
134 are supposed to provide alternate
137 Additionly %OB implemented
138 to represent alternative months names
139 (used standalone, without day mentioned).
141 is replaced by the day of month as a decimal number (1-31); single
142 digits are preceded by a blank.
147 is replaced by a year as a decimal number with century.
148 This year is the one that contains the greater part of
149 the week (Monday as the first day of the week).
151 is replaced by the same year as in
153 but as a decimal number without century (00-99).
155 is replaced by the hour (24-hour clock) as a decimal number (00-23).
159 is replaced by the hour (12-hour clock) as a decimal number (01-12).
161 is replaced by the day of the year as a decimal number (001-366).
163 is replaced by the hour (24-hour clock) as a decimal number (0-23);
164 single digits are preceded by a blank.
166 is replaced by the hour (12-hour clock) as a decimal number (1-12);
167 single digits are preceded by a blank.
169 is replaced by the minute as a decimal number (00-59).
171 is replaced by the month as a decimal number (01-12).
173 is replaced by a newline.
177 is replaced by national representation of either
189 is replaced by the second as a decimal number (00-60).
191 is replaced by the number of seconds since the Epoch, UTC (see
197 is replaced by a tab.
199 is replaced by the week number of the year (Sunday as the first day of
200 the week) as a decimal number (00-53).
202 is replaced by the weekday (Monday as the first day of the week)
203 as a decimal number (1-7).
205 is replaced by the week number of the year (Monday as the first day of
206 the week) as a decimal number (01-53).
207 If the week containing January
208 1 has four or more days in the new year, then it is week 1; otherwise
209 it is the last week of the previous year, and the next week is week 1.
214 is replaced by the week number of the year (Monday as the first day of
215 the week) as a decimal number (00-53).
217 is replaced by the weekday (Sunday as the first day of the week)
218 as a decimal number (0-6).
220 is replaced by national representation of the time.
222 is replaced by national representation of the date.
224 is replaced by the year with century as a decimal number.
226 is replaced by the year without century as a decimal number (00-99).
228 is replaced by the time zone name.
230 is replaced by the time zone offset from UTC; a leading plus sign stands for
231 east of UTC, a minus sign for west of UTC, hours and minutes follow
232 with two digits each and no delimiter between them (common form for
233 RFC 822 date headers).
235 is replaced by national representation of the date and time
236 (the format is similar to that produced by
256 with a lot of extensions including
279 The peculiar week number and year in the replacements of
284 are defined in ISO 8601: 1988.
286 There is no conversion specification for the phase of the moon.
290 function does not correctly handle multibyte characters in the