]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/ctime.3
Add/fix feature test macro requirements.
[thirdparty/man-pages.git] / man3 / ctime.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one.
11 .\"
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date. The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein. The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\"
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" References consulted:
24 .\" Linux libc source code
25 .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26 .\" 386BSD man pages
27 .\" Modified Sat Jul 24 19:49:27 1993 by Rik Faith (faith@cs.unc.edu)
28 .\" Modified Fri Apr 26 12:38:55 MET DST 1996 by Martin Schulze (joey@linux.de)
29 .\" Modified 2001-11-13, aeb
30 .\" Modified 2001-12-13, joey, aeb
31 .\" Modified 2004-11-16, mtk
32 .\"
33 .TH CTIME 3 2008-08-29 "" "Linux Programmer's Manual"
34 .SH NAME
35 asctime, ctime, gmtime, localtime, mktime, asctime_r, ctime_r, gmtime_r,
36 localtime_r \- transform date and time to broken-down time or ASCII
37 .SH SYNOPSIS
38 .nf
39 .B #include <time.h>
40 .sp
41 .BI "char *asctime(const struct tm *" tm );
42 .br
43 .BI "char *asctime_r(const struct tm *" tm ", char *" buf );
44 .sp
45 .BI "char *ctime(const time_t *" timep );
46 .br
47 .BI "char *ctime_r(const time_t *" timep ", char *" buf );
48 .sp
49 .BI "struct tm *gmtime(const time_t *" timep );
50 .br
51 .BI "struct tm *gmtime_r(const time_t *" timep ", struct tm *" result );
52 .sp
53 .BI "struct tm *localtime(const time_t *" timep );
54 .br
55 .BI "struct tm *localtime_r(const time_t *" timep ", struct tm *" result );
56 .sp
57 .BI "time_t mktime(struct tm *" tm );
58 .fi
59 .sp
60 .in -4n
61 Feature Test Macro Requirements for glibc (see
62 .BR feature_test_macros (7)):
63 .in
64 .sp
65 .BR asctime_r (),
66 .BR ctime_r (),
67 .BR gmtime_r (),
68 .BR localtime_r ():
69 .br
70 _POSIX_C_SOURCE\ >=\ 1 || _XOPEN_SOURCE || _BSD_SOURCE ||
71 _SVID_SOURCE || _POSIX_SOURCE
72 .SH DESCRIPTION
73 The
74 .BR ctime (),
75 .BR gmtime ()
76 and
77 .BR localtime ()
78 functions all take
79 an argument of data type \fItime_t\fP which represents calendar time.
80 When interpreted as an absolute time value, it represents the number of
81 seconds elapsed since 00:00:00 on January 1, 1970, Coordinated Universal
82 Time (UTC).
83 .PP
84 The
85 .BR asctime ()
86 and
87 .BR mktime ()
88 functions both take an argument
89 representing broken-down time which is a representation
90 separated into year, month, day, etc.
91 .PP
92 Broken-down time is stored
93 in the structure \fItm\fP which is defined in \fI<time.h>\fP as follows:
94 .sp
95 .in +4n
96 .nf
97 struct tm {
98 int tm_sec; /* seconds */
99 int tm_min; /* minutes */
100 int tm_hour; /* hours */
101 int tm_mday; /* day of the month */
102 int tm_mon; /* month */
103 int tm_year; /* year */
104 int tm_wday; /* day of the week */
105 int tm_yday; /* day in the year */
106 int tm_isdst; /* daylight saving time */
107 };
108 .fi
109 .in
110 .PP
111 The members of the \fItm\fP structure are:
112 .TP
113 .I tm_sec
114 The number of seconds after the minute, normally in the range 0 to 59,
115 but can be up to 60 to allow for leap seconds.
116 .TP
117 .I tm_min
118 The number of minutes after the hour, in the range 0 to 59.
119 .TP
120 .I tm_hour
121 The number of hours past midnight, in the range 0 to 23.
122 .TP
123 .I tm_mday
124 The day of the month, in the range 1 to 31.
125 .TP
126 .I tm_mon
127 The number of months since January, in the range 0 to 11.
128 .TP
129 .I tm_year
130 The number of years since 1900.
131 .TP
132 .I tm_wday
133 The number of days since Sunday, in the range 0 to 6.
134 .TP
135 .I tm_yday
136 The number of days since January 1, in the range 0 to 365.
137 .TP
138 .I tm_isdst
139 A flag that indicates whether daylight saving time is in effect at the
140 time described.
141 The value is positive if daylight saving time is in
142 effect, zero if it is not, and negative if the information is not
143 available.
144 .PP
145 The call
146 .BI ctime( t )
147 is equivalent to
148 .BI asctime(localtime( t )) \fR.
149 It converts the calendar time \fIt\fP into a
150 null-terminated string of the form
151 .sp
152 .RS
153 "Wed Jun 30 21:49:08 1993\\n"
154 .RE
155 .sp
156 The abbreviations for the days of the week are "Sun", "Mon", "Tue", "Wed",
157 "Thu", "Fri", and "Sat".
158 The abbreviations for the months are "Jan",
159 "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", and
160 "Dec".
161 The return value points to a statically allocated string which
162 might be overwritten by subsequent calls to any of the date and time
163 functions.
164 The function also sets the external variable \fItzname\fP (see
165 .BR tzset (3))
166 with information about the current time zone.
167 The reentrant version
168 .BR ctime_r ()
169 does the same, but stores the
170 string in a user-supplied buffer of length at least 26.
171 It need not
172 set \fItzname\fP.
173 .PP
174 The
175 .BR gmtime ()
176 function converts the calendar time \fItimep\fP to
177 broken-down time representation, expressed in Coordinated Universal Time
178 (UTC).
179 It may return NULL when the year does not fit into an integer.
180 The return value points to a statically allocated struct which might be
181 overwritten by subsequent calls to any of the date and time functions.
182 The
183 .BR gmtime_r ()
184 function does the same, but stores the data in a
185 user-supplied struct.
186 .PP
187 The
188 .BR localtime ()
189 function converts the calendar time \fItimep\fP to
190 broken-time representation, expressed relative to the user's specified
191 time zone.
192 The function acts as if it called
193 .BR tzset (3)
194 and sets the external variables \fItzname\fP with
195 information about the current time zone, \fItimezone\fP with the difference
196 between Coordinated Universal Time (UTC) and local standard time in
197 seconds, and \fIdaylight\fP to a non-zero value if daylight savings
198 time rules apply during some part of the year.
199 The return value points to a statically allocated struct which might be
200 overwritten by subsequent calls to any of the date and time functions.
201 The
202 .BR localtime_r ()
203 function does the same, but stores the data in a
204 user-supplied struct.
205 It need not set \fItzname\fP.
206 .PP
207 The
208 .BR asctime ()
209 function converts the broken-down time value
210 \fItm\fP into a null-terminated string with the same format as
211 .BR ctime ().
212 The return value points to a statically allocated string which might be
213 overwritten by subsequent calls to any of the date and time functions.
214 The
215 .BR asctime_r ()
216 function does the same, but stores the string in
217 a user-supplied buffer of length at least 26.
218 .PP
219 The
220 .BR mktime ()
221 function converts a broken-down time structure, expressed
222 as local time, to calendar time representation.
223 The function ignores
224 the specified contents of the structure members \fItm_wday\fP and \fItm_yday\fP
225 and recomputes them from the other information in the broken-down time
226 structure.
227 If structure members are outside their valid interval, they will be
228 normalized (so that, for example, 40 October is changed into 9 November).
229 Calling
230 .BR mktime ()
231 also sets the external variable \fItzname\fP with
232 information about the current time zone.
233 If the specified broken-down
234 time cannot be represented as calendar time (seconds since the Epoch),
235 .BR mktime ()
236 returns a value of
237 .I (time_t)\ \-1
238 and does not alter the
239 \fItm_wday\fP and \fItm_yday\fP members of the broken-down time structure.
240 .SH "RETURN VALUE"
241 Each of these functions returns the value described, or NULL
242 (\-1 in case of
243 .BR mktime ())
244 in case an error was detected.
245 .SH "CONFORMING TO"
246 POSIX.1-2001.
247 C89 and C99 specify
248 .BR asctime (),
249 .BR ctime (),
250 .BR gmtime (),
251 .BR localtime (),
252 and
253 .BR mktime ().
254 POSIX.1-2008 marks
255 .BR asctime (),
256 .BR asctime_r (),
257 .BR ctime (),
258 and
259 .BR ctime_r ()
260 as obsolete.
261 .SH NOTES
262 The four functions
263 .BR asctime (),
264 .BR ctime (),
265 .BR gmtime ()
266 and
267 .BR localtime ()
268 return a pointer to static data and hence are not thread-safe.
269 Thread-safe versions
270 .BR asctime_r (),
271 .BR ctime_r (),
272 .BR gmtime_r ()
273 and
274 .BR localtime_r ()
275 are specified by SUSv2, and available since libc 5.2.5.
276
277 POSIX.1-2001 says:
278 "The
279 .BR asctime (),
280 .BR ctime (),
281 .BR gmtime (),
282 and
283 .BR localtime ()
284 functions shall return values in one of two static objects:
285 a broken-down time structure and an array of type
286 .IR char .
287 Execution of any of the functions may overwrite the information returned
288 in either of these objects by any of the other functions."
289 This can occur in the glibc implementation.
290 .LP
291 In many implementations, including glibc, a 0 in
292 .I tm_mday
293 is interpreted as meaning the last day of the preceding month.
294 .LP
295 The glibc version of \fIstruct tm\fP has additional fields
296 .sp
297 .RS
298 .nf
299 long tm_gmtoff; /* Seconds east of UTC */
300 const char *tm_zone; /* Timezone abbreviation */
301 .fi
302 .RE
303 .sp
304 defined when
305 .B _BSD_SOURCE
306 was set before including
307 .IR <time.h> .
308 This is a BSD extension, present in 4.3BSD-Reno.
309
310 According to POSIX.1-2004,
311 .BR localtime ()
312 is required to behave as though
313 .BR tzset ()
314 was called, while
315 .BR localtime_r ()
316 does not have this requirement.
317 .\" See http://thread.gmane.org/gmane.comp.time.tz/2034/
318 For portable code
319 .BR tzset ()
320 should be called before
321 .BR localtime_r ().
322 .SH "SEE ALSO"
323 .BR date (1),
324 .BR gettimeofday (2),
325 .BR time (2),
326 .BR utime (2),
327 .BR clock (3),
328 .BR difftime (3),
329 .BR strftime (3),
330 .BR strptime (3),
331 .BR timegm (3),
332 .BR tzset (3),
333 .BR time (7)