]> git.ipfire.org Git - thirdparty/glibc.git/blame - time/localtime.c
Update.
[thirdparty/glibc.git] / time / localtime.c
CommitLineData
d38cd08c 1/* Convert `time_t' to `struct tm' in local time zone.
b77e6cd6 2 Copyright (C) 1991, 92, 93, 95, 96, 97, 98 Free Software Foundation, Inc.
10dc2a90 3 This file is part of the GNU C Library.
28f540f4 4
10dc2a90
UD
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 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
13 Library General Public License for more details.
28f540f4 14
10dc2a90
UD
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
28f540f4 19
28f540f4
RM
20#include <time.h>
21
c2216480
RM
22/* The C Standard says that localtime and gmtime return the same pointer. */
23struct tm _tmbuf;
28f540f4 24
d38cd08c 25
9a0a462c
UD
26/* Return the `struct tm' representation of *T in local time,
27 using *TP to store the result. */
d38cd08c 28struct tm *
9a0a462c
UD
29__localtime_r (t, tp)
30 const time_t *t;
31 struct tm *tp;
d38cd08c 32{
9a0a462c 33 return __tz_convert (t, 1, tp);
d38cd08c 34}
9a0a462c 35weak_alias (__localtime_r, localtime_r)
d38cd08c
UD
36
37
9a0a462c 38/* Return the `struct tm' representation of *T in local time. */
d38cd08c 39struct tm *
9a0a462c
UD
40localtime (t)
41 const time_t *t;
d38cd08c 42{
9a0a462c 43 return __tz_convert (t, 1, &_tmbuf);
28f540f4 44}