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
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 3. All advertising materials mentioning features or use of this software
15 .\" must display the following acknowledgement:
16 .\" This product includes software developed by the University of
17 .\" California, Berkeley and its contributors.
18 .\" 4. Neither the name of the University nor the names of its contributors
19 .\" may be used to endorse or promote products derived from this software
20 .\" without specific prior written permission.
22 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 .\" From: @(#)ctime.3 8.1 (Berkeley) 6/4/93
35 .\" $FreeBSD: src/lib/libc/stdtime/ctime.3,v 1.22 2004/07/02 23:52:12 ru Exp $
52 .Nd transform binary date and time values
57 .Vt extern char *tzname[2] ;
59 .Fn asctime "const struct tm *timeptr"
61 .Fn asctime_r "const struct tm *restrict timeptr" "char *restrict buf"
63 .Fn ctime "const time_t *clock"
65 .Fn ctime_r "const time_t *clock" "char *buf"
67 .Fn difftime "time_t time1" "time_t time0"
69 .Fn gmtime "const time_t *clock"
71 .Fn gmtime_r "const time_t *clock" "struct tm *result"
73 .Fn localtime "const time_t *clock"
75 .Fn localtime_r "const time_t *clock" "struct tm *result"
77 .Fn mktime "struct tm *timeptr"
79 .Fn timegm "struct tm *timeptr"
86 all take as an argument a time value representing the time in seconds since
94 converts the time value pointed at by
96 It returns a pointer to a
98 (described below), which contains
99 the broken-out time information for the value after adjusting for the current
100 time zone (and any other factors such as Daylight Saving Time).
101 Time zone adjustments are performed as specified by the
103 environment variable (see
109 to initialize time conversion information, if
111 has not already been called by the process.
113 After filling in the tm structure,
121 string containing the time zone abbreviation to be
128 also converts the time value, but makes no time zone adjustment.
129 It returns a pointer to a tm structure (described below).
134 adjusts the time value for the current time zone, in the same manner as
136 It returns a pointer to a 26-character string of the form:
137 .Bd -literal -offset indent
138 Thu Nov 24 18:22:48 1986\en\e0
141 All of the fields have constant width.
146 provides the same functionality as
148 except that the caller must provide the output buffer
150 (which must be at least 26 characters long) to store the result.
156 provide the same functionality as
160 respectively, except the caller must provide the output buffer
166 converts the broken-out time in the structure
171 shown in the example above.
176 provides the same functionality as
178 except that the caller provides the output buffer
180 (which must be at least 26 characters long) to store the result.
186 convert the broken-out time
187 (in the structure pointed to by
189 into a time value with the same encoding as that of the
190 values returned by the
192 function (that is, seconds from the Epoch,
197 interprets the input structure according to the current timezone setting
202 function interprets the input structure
203 as representing Universal Coordinated Time
206 The original values of the
210 components of the structure are ignored. The original values of the
211 other components are not restricted to their normal ranges and will be
212 normalized, if need be.
214 October 40 is changed into November 9,
217 of \-1 means 1 hour before midnight,
219 of 0 means the day preceding the current month, and
221 of \-2 means 2 months before January of
223 (A positive or zero value for
227 to presume initially that summer time (for example, Daylight Saving Time)
228 is or is not (respectively) in effect for the specified time.
233 function to attempt to divine whether summer time is in effect for the
239 members are forced to zero by
242 On successful completion, the values of the
246 components of the structure are set appropriately, and the other components
247 are set to represent the specified calendar time, but with their values
248 forced to their normal ranges; the final value of
258 returns the specified calendar time; if the calendar time cannot be
259 represented, it returns \-1;
264 returns the difference between two calendar times,
268 expressed in seconds.
270 External declarations, as well as the tm structure definition,
274 The tm structure includes at least the following fields:
275 .Bd -literal -offset indent
276 int tm_sec; /\(** seconds (0 - 60) \(**/
277 int tm_min; /\(** minutes (0 - 59) \(**/
278 int tm_hour; /\(** hours (0 - 23) \(**/
279 int tm_mday; /\(** day of month (1 - 31) \(**/
280 int tm_mon; /\(** month of year (0 - 11) \(**/
281 int tm_year; /\(** year \- 1900 \(**/
282 int tm_wday; /\(** day of week (Sunday = 0) \(**/
283 int tm_yday; /\(** day of year (0 - 365) \(**/
284 int tm_isdst; /\(** is summer time in effect? \(**/
285 char \(**tm_zone; /\(** abbreviation of timezone name \(**/
286 long tm_gmtoff; /\(** offset from UTC in seconds \(**/
292 is non-zero if summer (i.e., Daylight Saving) time is in effect.
296 is the offset (in seconds) of the time represented from
299 values indicating locations east of the Prime Meridian.
320 provided the selected local timezone does not contain a leap-second table
330 functions are expected to conform to
332 (again provided the selected local timezone does not contain a leap-second
337 function is not specified by any standard; its function cannot be
338 completely emulated using the standard functions described above.
340 This manual page is derived from
341 the time package contributed to Berkeley by
343 and which appeared in
351 variants of the other functions,
352 these functions leaves their result in an internal static object and return
353 a pointer to that object.
354 Subsequent calls to these
355 function will modify the same object.
357 The C Standard provides no mechanism for a program to modify its current
358 local timezone setting, and the
359 .Tn POSIX Ns No \&-standard
360 method is not reentrant.
361 (However, thread-safe implementations are provided
364 threaded environment.)
370 structure points to a static array of characters,
371 which will also be overwritten by any subsequent calls (as well as by
377 Use of the external variable
381 entry in the tm structure is preferred.