]> git.ipfire.org Git - thirdparty/glibc.git/blame - time/localtime.c
Installed-header hygiene (BZ#20366): time.h types.
[thirdparty/glibc.git] / time / localtime.c
CommitLineData
d38cd08c 1/* Convert `time_t' to `struct tm' in local time zone.
f7a9f785 2 Copyright (C) 1991-2016 Free Software Foundation, Inc.
10dc2a90 3 This file is part of the GNU C Library.
28f540f4 4
10dc2a90 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.
28f540f4 9
10dc2a90
UD
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.
28f540f4 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/* The C Standard says that localtime and gmtime return the same pointer. */
22struct tm _tmbuf;
28f540f4 23
d38cd08c 24
9a0a462c
UD
25/* Return the `struct tm' representation of *T in local time,
26 using *TP to store the result. */
d38cd08c 27struct tm *
9d46370c 28__localtime_r (const time_t *t, struct tm *tp)
d38cd08c 29{
9a0a462c 30 return __tz_convert (t, 1, tp);
d38cd08c 31}
9a0a462c 32weak_alias (__localtime_r, localtime_r)
d38cd08c
UD
33
34
9a0a462c 35/* Return the `struct tm' representation of *T in local time. */
d38cd08c 36struct tm *
9d46370c 37localtime (const time_t *t)
d38cd08c 38{
9a0a462c 39 return __tz_convert (t, 1, &_tmbuf);
28f540f4 40}
c5598d47 41libc_hidden_def (localtime)