Blame gnulib/lib/localtime-buffer.c

Packit Service a2ae7a
/* Provide access to the last buffer returned by localtime() or gmtime().
Packit Service a2ae7a
Packit Service a2ae7a
   Copyright (C) 2001-2003, 2005-2007, 2009-2019 Free Software Foundation, Inc.
Packit Service a2ae7a
Packit Service a2ae7a
   This program is free software; you can redistribute it and/or modify
Packit Service a2ae7a
   it under the terms of the GNU Lesser General Public License as published by
Packit Service a2ae7a
   the Free Software Foundation; either version 2.1, or (at your option)
Packit Service a2ae7a
   any later version.
Packit Service a2ae7a
Packit Service a2ae7a
   This program is distributed in the hope that it will be useful,
Packit Service a2ae7a
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a2ae7a
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service a2ae7a
   GNU Lesser General Public License for more details.
Packit Service a2ae7a
Packit Service a2ae7a
   You should have received a copy of the GNU Lesser General Public License
Packit Service a2ae7a
   along with this program; if not, see <https://www.gnu.org/licenses/>.  */
Packit Service a2ae7a
Packit Service a2ae7a
/* written by Jim Meyering */
Packit Service a2ae7a
Packit Service a2ae7a
#include <config.h>
Packit Service a2ae7a
Packit Service a2ae7a
/* Specification.  */
Packit Service a2ae7a
#include "localtime-buffer.h"
Packit Service a2ae7a
Packit Service a2ae7a
#if GETTIMEOFDAY_CLOBBERS_LOCALTIME || TZSET_CLOBBERS_LOCALTIME
Packit Service a2ae7a
Packit Service a2ae7a
static struct tm tm_zero_buffer;
Packit Service a2ae7a
struct tm *localtime_buffer_addr = &tm_zero_buffer;
Packit Service a2ae7a
Packit Service a2ae7a
/* This is a wrapper for localtime.
Packit Service a2ae7a
Packit Service a2ae7a
   On the first call, record the address of the static buffer that
Packit Service a2ae7a
   localtime uses for its result.  */
Packit Service a2ae7a
Packit Service a2ae7a
struct tm *
Packit Service a2ae7a
rpl_localtime (time_t const *timep)
Packit Service a2ae7a
#undef localtime
Packit Service a2ae7a
{
Packit Service a2ae7a
  struct tm *tm = localtime (timep);
Packit Service a2ae7a
Packit Service a2ae7a
  if (localtime_buffer_addr == &tm_zero_buffer)
Packit Service a2ae7a
    localtime_buffer_addr = tm;
Packit Service a2ae7a
Packit Service a2ae7a
  return tm;
Packit Service a2ae7a
}
Packit Service a2ae7a
Packit Service a2ae7a
/* Same as above, since gmtime and localtime use the same buffer.  */
Packit Service a2ae7a
struct tm *
Packit Service a2ae7a
rpl_gmtime (time_t const *timep)
Packit Service a2ae7a
#undef gmtime
Packit Service a2ae7a
{
Packit Service a2ae7a
  struct tm *tm = gmtime (timep);
Packit Service a2ae7a
Packit Service a2ae7a
  if (localtime_buffer_addr == &tm_zero_buffer)
Packit Service a2ae7a
    localtime_buffer_addr = tm;
Packit Service a2ae7a
Packit Service a2ae7a
  return tm;
Packit Service a2ae7a
}
Packit Service a2ae7a
Packit Service a2ae7a
#endif