add opendir alias
[minix.git] / lib / libc / time / ctime.3
blobf9591c905c8ceafc72dfa340cdc926eb387e637a
1 .\" $NetBSD: ctime.3,v 1.46 2011/11/02 23:06:08 christos Exp $
2 .\"
3 .\" XXX: License missing?
4 .\"
5 .Dd November 2, 2011
6 .Dt CTIME 3
7 .Os
8 .Sh NAME
9 .Nm asctime ,
10 .Nm asctime_r ,
11 .Nm ctime ,
12 .Nm ctime_r ,
13 .Nm ctime_rz ,
14 .Nm difftime ,
15 .Nm gmtime ,
16 .Nm gmtime_r ,
17 .Nm localtime ,
18 .Nm localtime_r ,
19 .Nm localtime_rz ,
20 .Nm mktime ,
21 .Nm mktime_z ,
22 .Nm tzalloc ,
23 .Nm tzgetname ,
24 .Nm tzfree ,
25 .Nd convert date and time to ASCII
26 .Sh LIBRARY
27 .Lb libc
28 .Sh SYNOPSIS
29 .In time.h
30 .Vt extern char *tzname[2];
31 .Ft char *
32 .Fn asctime "const struct tm *tm"
33 .Ft char *
34 .Fn asctime_r "const struct tm restrict tm" "char * restrict buf"
35 .Ft char *
36 .Fn ctime "const time_t *clock"
37 .Ft char *
38 .Fn ctime_r "const time_t *clock"  "char *buf"
39 .Ft char *
40 .Fn ctime_rz "const timezone_t tz" "const time_t *clock"  "char *buf"
41 .Ft double
42 .Fn difftime "time_t time1" "time_t time0"
43 .Ft struct tm *
44 .Fn gmtime "const time_t *clock"
45 .Ft struct tm *
46 .Fn gmtime_r "const time_t * restrict clock" "struct tm * restrict result"
47 .Ft struct tm *
48 .Fn localtime "const time_t *clock"
49 .Ft struct tm *
50 .Fn localtime_r "const time_t * restrict clock" "struct tm * restrict result"
51 .Ft struct tm *
52 .Fn localtime_rz "const timezone_t tz" "const time_t * restrict clock" "struct tm * restrict result"
53 .Ft time_t
54 .Fn mktime "struct tm *tm"
55 .Ft time_t
56 .Fn mktime_z "const timezone_t tz" "struct tm *tm"
57 .Ft timezone_t
58 .Fn tzalloc "const char *zone"
59 .Ft void
60 .Fn tzfree "const timezone_t tz"
61 .Ft const char *
62 .Fn tzgetname "const timezone_t tz" "int isdst"
63 .Sh DESCRIPTION
64 The
65 .Nm
66 family of functions provide various standard library routines
67 to operate with time and conversions related to time.
68 .Sh FUNCTIONS
69 .Bl -tag -width abcd
70 .It Fn asctime "tm"
71 The
72 .Fn asctime
73 function converts a time value contained in the
74 .Fa tm
75 structure to a string with the following general format:
76 .Bd -literal -offset indent
77 .D1 Thu Nov 24 18:22:48 1986\en\e0
78 .Ed
79 .Pp
80 The
81 .Fa tm
82 structure is described in
83 .Xr tm 3 .
84 .It Fn asctime_r "tm" "buf"
85 The
86 .Fn asctime_r
87 has the same behavior as
88 .Fn asctime ,
89 but the result is stored to
90 .Fa buf ,
91 which should have a size of at least 26 bytes.
92 .It Fn ctime "clock"
93 The
94 .Fn ctime
95 function converts a
96 .Vt time_t ,
97 pointed to by
98 .Fa clock ,
99 representing the time in seconds since 00:00:00 UTC, 1970-01-01,
100 and returns a pointer to a string with the format described above.
101 Years requiring fewer than four characters are padded with leading zeroes.
102 For years longer than four characters, the string is of the form
103 .Bd -literal -offset indent
104 .D1 "Thu Nov 24 18:22:48     81986\en\e0"
107 with five spaces before the year.
108 These unusual formats are designed to make it less likely that older
109 software that expects exactly 26 bytes of output will mistakenly output
110 misleading values for out-of-range years.
111 .It Fn ctime_r "clock" "buf"
113 .Fn ctime_r
114 is similar to
115 .Fn ctime ,
116 except it places the result of the conversion on the
117 .Fa buf
118 argument, which should be 26 or more bytes long,
119 instead of using a global static buffer.
120 .It Fn ctime_rz "tz" "clock" "buf"
122 .Fn ctime_rz
123 function is similar to
124 .Fn ctime_r ,
125 but it also takes a
126 .Ft "const timezone_t"
127 argument, as returned by a previous call to
128 .Fn tzalloc .
129 .It Fn difftime "time1" "time2"
131 .Fn difftime
132 function returns the difference between two calendar times,
133 .Fa ( time1 No - Fa time0 ) ,
134 expressed in seconds.
135 .It Fn gmtime "clock"
137 .Fn gmtime
138 function converts to Coordinated Universal Time
139 .Pq Tn UTC
140 and returns a pointer to the
141 .Va tm
142 structure described in
143 .Xr tm 3 .
144 .It Fn gmtime_r "clock" "result"
146 .Fn gmtime_r
147 provides the same functionality as
148 .Fn gmtime ,
149 differing in that the caller must supply a buffer area
150 .Fa result
151 to which the result is stored.
152 .It Fn localtime "clock"
153 Also
154 .Fn localtime
155 is comparable to
156 .Fn gmtime .
157 However,
158 .Fn localtime
159 corrects for the time zone and any time zone adjustments
160 (such as Daylight Saving Time in the U.S.A.).
161 After filling in the
162 .Va tm
163 structure, the function sets the
164 .Fa tm_isdst Ns 'th
165 element of
166 .Fa tzname
167 to a pointer to an
168 ASCII string that is the time zone abbreviation to be used with
169 .Fn localtime Ns 's
170 return value.
171 .It Fn localtime_r "clock" "result"
173 .Fn gmtime_r ,
175 .Fn localtime_r
176 takes an additional buffer
177 .Fa result
178 as a parameter and stores the result to it.
179 Note however that
180 .Fn localtime_r
181 does not imply initialization of the local time conversion information;
182 the application may need to do so by calling
183 .Xr tzset 3 .
184 .It Fn localtime_rz "tz" "clock" "result"
186 .Fn localtime_rz
187 function is similar to
188 .Fn localtime_r ,
189 but it also takes a
190 .Ft "const timezone_t"
191 argument, returned by a previous call to
192 .Fn tzalloc .
193 .It Fn mktime "tm"
195 .Fn mktime
196 function converts the broken-down time,
197 expressed as local time in the
198 .Xr tm 3
199 structure, into a calendar time value with
200 the same encoding as that of the values returned by the
201 .Xr time 3
202 function.
203 The following remarks should be taken into account.
204 .Bl -bullet
206 The original values of the
207 .Fa tm_wday
209 .Fa tm_yday
210 components of the structure are ignored,
211 and the original values of the other components are not restricted
212 to their normal ranges.
213 (A positive or zero value for
214 .Fa tm_isdst
215 causes
216 .Fn mktime
217 to presume initially that summer time (for example, Daylight Saving Time
218 in the U.S.A.) respectively,
219 is or is not in effect for the specified time.
221 A negative value for
222 .Fa tm_isdst
223 causes the
224 .Fn mktime
225 function to attempt to divine whether summer time is in effect
226 for the specified time; in this case it does not use a consistent
227 rule and may give a different answer when later
228 presented with the same argument.
230 On successful completion, the values of the
231 .Fa tm_wday
233 .Fa tm_yday
234 components of the structure are set appropriately,
235 and the other components are set to represent the specified calendar time,
236 but with their values forced to their normal ranges; the final value of
237 .Fa tm_mday
238 is not set until
239 .Fa tm_mon
241 .Fa tm_year
242 are determined.
245 The function returns the specified calendar time;
246 if the calendar time cannot be represented, it returns
247 .Va "(time_t)-1" .
248 This can happen either because the resulting conversion would not fit
249 in a
250 .Vt time_t
251 variable, or because the time specified happens to be in the daylight
252 savings gap and
253 .Fa tm_isdst
254 was set to
255 .Dv \-1 .
256 Other
257 .Fn mktime
258 implementations do not return an error in the second case and return
259 the appropriate time offset after the daylight savings gap.
260 There is code to mimick this behavior, but it is not enabled by default.
261 .It Fn mktime_z "tz" "tm"
263 .Fn mktime_z
264 function is similar to
265 .Fn mktime
266 but it also takes a
267 .Ft "const timezone_t"
268 argument, returned by a previous call to
269 .Fn tzalloc .
270 .It Fn tzalloc "zone"
272 .Fn tzalloc
273 function takes as an argument a timezone name and returns a
274 .Ft timezone_t
275 object suitable to be used in the
276 .Fn ctime_rz ,
277 .Fn localtime_rz ,
279 .Fn mktime_z
280 functions.
282 Note that instead of setting the environment variable
283 .Va TZ ,
284 and globally changing the behavior of the calling program, one can use
285 multiple timezones at the same time by using separate
286 .Ft timezone_t
287 objects allocated by
288 .Fn tzalloc
289 and calling the
290 .Dq z
291 variants of the functions.
292 .It Fn tzfree "tz"
294 .Fn tzfree
295 function deallocates
296 .Fa tz ,
297 which was previously allocated by
298 .Fn tzalloc .
299 .It Fn "tzgetname"
300 Finally,
301 .Fn tzgetname
302 returns the name for the given
303 .Fa tz .
305 .Fa isdst
307 .Va 0 ,
308 the call is equivalent to
309 .Va tzname[0] .
311 .Fa isdst
312 is set to
313 .Va 1
314 the call is equivalent to
315 .Va tzname[1] .
317 .Sh RETURN VALUES
318 .Bl -bullet
320 On success the
321 .Fn asctime
323 .Fn ctime
324 functions return a pointer to a static character buffer, and the
325 .Fn asctime_r ,
326 .Fn ctime_r ,
328 .Fn ctime_rz
329 function return a pointer to the user-supplied buffer.
330 On failure they all return
331 .Dv NULL
332 and no errors are defined for them.
334 On success the
335 .Fn gmtime ,
337 .Fn localtime
338 functions return a pointer to a statically allocated
339 .Va "struct tm"
340 whereas the
341 .Fn gmtime_r ,
342 .Fn localtime_r ,
344 .Fn localtime_rz ,
345 functions return a pointer to the user-supplied
346 .Va "struct tm" .
347 On failure they all return
348 .Dv NULL
349 and the global variable
350 .Va errno
351 is set to indicate the error.
354 .Fn mktime
356 .Fn mktime_z
357 function returns the specified time since the Epoch as a
358 .Vt time_t
359 type value.
360 If the time cannot be represented, then
361 .Fn mktime
363 .Fn mktime_z
364 return
365 .Va "(time_t)-1"
366 setting the global variable
367 .Va errno
368 to indicate the error.
371 .Fn tzalloc
372 function returns a pointer to a
373 .Ft timezone_t
374 object or
375 .Dv NULL
376 on failure, setting
377 .Va errno
378 to indicate the error.
380 .Fn tzgetzone
381 function returns string containing the name of the timezone given in
382 .Fa tz .
384 .Sh FILES
385 .Bl -tag -width /usr/share/zoneinfo/posixrules -compact
386 .It Pa /etc/localtime
387 local time zone file
388 .It Pa /usr/share/zoneinfo
389 time zone information directory
390 .It Pa /usr/share/zoneinfo/posixrules
391 used with POSIX-style TZ's
392 .It Pa /usr/share/zoneinfo/GMT
393 for UTC leap seconds
397 .Pa /usr/share/zoneinfo/GMT
398 is absent, UTC leap seconds are loaded from
399 .Pa /usr/share/zoneinfo/posixrules .
400 .Sh ERRORS
401 The described functions may fail with
402 .Bl -tag -width Er
403 .It Bq Er EINVAL
404 The result cannot be represented because a parameter is incorrect, or
405 the conversion failed because no such time exists (for example a time
406 in the DST gap).
407 .It Bq Er EOVERFLOW
408 The result cannot be represented because the time requested is out of bounds
409 and the time calculation resulted in overflow.
412 All functions that return values, except their
413 .Dq z
414 variants, can also return the same errors as
415 .Xr open 2
417 .Xr malloc 3 .
418 .Sh SEE ALSO
419 .Xr getenv 3 ,
420 .Xr strftime 3 ,
421 .Xr time 3 ,
422 .Xr tm 3 ,
423 .Xr tzset 3 ,
424 .Xr tzfile 5
425 .Sh STANDARDS
427 .Fn ctime ,
428 .Fn difftime ,
429 .Fn asctime ,
430 .Fn localtime ,
431 .Fn gmtime
433 .Fn mktime
434 functions conform to
435 .St -ansiC .
436 Rest of the functions conform to
437 .St -p1003.1-2008 .
438 .Sh CAVEATS
439 The functions that do not take an explicit
440 .Ft timezone_t
441 argument return values point to static data; the data is overwritten by
442 each call.
443 For the above functions the
444 .Fa tm_zone
445 field of a returned
446 .Va "struct tm"
447 points to a static array of characters, which
448 will also be overwritten at the next call
449 (and by calls to
450 .Xr tzset 3 ) .
451 The functions that do take an explicit
452 .Ft timezone_t
453 argument and set the fields of a supplied
454 .Va "struct tm"
455 should not call
456 .Fn tzfree
457 since the
458 .Fa tm_zone
459 field of the
460 .Va "struct tm"
461 points to data allocated by
462 .Fn tzalloc .
465 .Fn asctime
467 .Fn ctime
468 functions behave strangely for years before 1000 or after 9999.
469 The 1989 and 1999 editions of the C Standard say
470 that years from \-99 through 999 are converted without
471 extra spaces, but this conflicts with longstanding
472 tradition and with this implementation.
473 Traditional implementations of these two functions are
474 restricted to years in the range 1900 through 2099.
475 To avoid this portability mess, new programs should use
476 .Fn strftime
477 instead.
479 Avoid using out-of-range values with
480 .Fn mktime
481 when setting up lunch with promptness sticklers in Riyadh.
482 .\" @(#)newctime.3      8.3
483 .\" This file is in the public domain, so clarified as of
484 .\" 2009-05-17 by Arthur David Olson.