]> git.ipfire.org Git - thirdparty/glibc.git/blame - time/gmtime.c
Replace FSF snail mail address with URLs.
[thirdparty/glibc.git] / time / gmtime.c
CommitLineData
9a0a462c 1/* Convert `time_t' to `struct tm' in UTC.
230491f0 2 Copyright (C) 1991, 93, 95, 96, 97, 98, 2002 Free Software Foundation, Inc.
fd26970f
UD
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
fd26970f
UD
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
fd26970f 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
28f540f4 18
28f540f4
RM
19#include <time.h>
20
c2216480
RM
21/* Return the `struct tm' representation of *T in UTC,
22 using *TP to store the result. */
23struct tm *
dcf0671d
UD
24__gmtime_r (t, tp)
25 const time_t *t;
26 struct tm *tp;
c2216480 27{
9a0a462c
UD
28 return __tz_convert (t, 0, tp);
29}
230491f0 30libc_hidden_def (__gmtime_r)
9a0a462c 31weak_alias (__gmtime_r, gmtime_r)
28f540f4 32
28f540f4 33
9a0a462c
UD
34/* Return the `struct tm' representation of *T in UTC. */
35struct tm *
36gmtime (t)
37 const time_t *t;
38{
39 return __tz_convert (t, 0, &_tmbuf);
28f540f4 40}