]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/timegm.3
man3/t-v.3: srcfix: Use a single-font-style macro for a single argument
[thirdparty/man-pages.git] / man3 / timegm.3
CommitLineData
fea681da
MK
1.\" Copyright (C) 2001 Andries Brouwer <aeb@cwi.nl>
2.\"
93015253 3.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
4.\" Permission is granted to make and distribute verbatim copies of this
5.\" manual provided the copyright notice and this permission notice are
6.\" preserved on all copies.
7.\"
8.\" Permission is granted to copy and distribute modified versions of this
9.\" manual under the conditions for verbatim copying, provided that the
10.\" entire resulting derived work is distributed under the terms of a
11.\" permission notice identical to this one.
c13182ef 12.\"
fea681da
MK
13.\" Since the Linux kernel and libraries are constantly changing, this
14.\" manual page may be incorrect or out-of-date. The author(s) assume no
15.\" responsibility for errors or omissions, or for damages resulting from
16.\" the use of the information contained herein. The author(s) may not
17.\" have taken the same level of care in the production of this manual,
18.\" which is licensed free of charge, as they might when working
19.\" professionally.
c13182ef 20.\"
fea681da
MK
21.\" Formatted or processed versions of this manual, if unaccompanied by
22.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 23.\" %%%LICENSE_END
fea681da 24.\"
35deeb87 25.TH TIMEGM 3 2016-12-12 "GNU" "Linux Programmer's Manual"
fea681da 26.SH NAME
02011a43 27timegm, timelocal \- inverses of gmtime and localtime
fea681da
MK
28.SH SYNOPSIS
29.nf
30.B #include <time.h>
68e4db0a 31.PP
b9f02710 32.BI "time_t timelocal(struct tm *" tm );
68e4db0a 33.PP
b9f02710 34.BI "time_t timegm(struct tm *" tm );
68e4db0a 35.PP
cc4615cc
MK
36.fi
37.in -4n
38Feature Test Macro Requirements for glibc (see
39.BR feature_test_macros (7)):
40.in
68e4db0a 41.PP
cc4615cc
MK
42.BR timelocal (),
43.BR timegm ():
51c612fb
MK
44 Since glibc 2.19:
45 _DEFAULT_SOURCE
46 Glibc 2.19 and earlier:
47 _BSD_SOURCE || _SVID_SOURCE
fea681da
MK
48.SH DESCRIPTION
49The functions
63aa9df0 50.BR timelocal ()
fea681da 51and
63aa9df0 52.BR timegm ()
02011a43 53are the inverses of
fea681da
MK
54.BR localtime (3)
55and
56.BR gmtime (3).
501934a9
MK
57Both functions take a broken-down time and convert it to calendar time
58(seconds since the Epoch, 1970-01-01 00:00:00 +0000, UTC).
59The difference between the two functions is that
60.BR timelocal ()
61takes the local timezone into account when doing the conversion, while
62.BR timegm ()
63takes the input value to be Coordinated Universal Time (UTC).
3bd58712
MK
64.SH RETURN VALUE
65On success,
66these functions return the calendar time (seconds since the Epoch),
67expressed as a value of type
68.IR time_t .
69On error, they return the value
d8a86e74 70.I (time_t)\ \-1
3bd58712
MK
71and set
72.I errno
73to indicate the cause of the error.
1946f1d2
MK
74.SH ERRORS
75.TP
76.B EOVERFLOW
1b9d5819 77The result cannot be represented.
cd6fe8e7
PH
78.SH ATTRIBUTES
79For an explanation of the terms used in this section, see
80.BR attributes (7).
81.TS
82allbox;
83lbw21 lb lb
84l l l.
85Interface Attribute Value
86T{
87.BR timelocal (),
88.BR timegm ()
89T} Thread safety MT-Safe env locale
90.TE
47297adb 91.SH CONFORMING TO
c8f2dd47 92These functions are nonstandard GNU extensions
02011a43 93that are also present on the BSDs.
25a0440e 94Avoid their use.
fea681da 95.SH NOTES
fea681da 96The
63aa9df0 97.BR timelocal ()
fea681da
MK
98function is equivalent to the POSIX standard function
99.BR mktime (3).
100There is no reason to ever use it.
47297adb 101.SH SEE ALSO
fea681da
MK
102.BR gmtime (3),
103.BR localtime (3),
104.BR mktime (3),
105.BR tzset (3)