Blame getdate.h

Packit 96c956
/*  Copyright (C) 1995 Free Software Foundation, Inc.
Packit 96c956
Packit 96c956
   This program is free software; you can redistribute it and/or modify
Packit 96c956
   it under the terms of the GNU General Public License as published by
Packit 96c956
   the Free Software Foundation; either version 2, or (at your option)
Packit 96c956
   any later version.
Packit 96c956
Packit 96c956
   This program is distributed in the hope that it will be useful,
Packit 96c956
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 96c956
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 96c956
   GNU General Public License for more details.
Packit 96c956
Packit 96c956
   You should have received a copy of the GNU General Public License
Packit 96c956
   along with this program; if not, write to the Free Software Foundation,
Packit 96c956
   Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. */
Packit 96c956
Packit 96c956
/* Modified from the original to add stdlib.h and string.h */
Packit 96c956
Packit 96c956
#ifndef GOT_GETDATE_H
Packit 96c956
#define GOT_GETDATE_H
Packit 96c956
Packit 96c956
#include <stdlib.h>
Packit 96c956
#include <string.h>
Packit 96c956
#include <time.h>
Packit 96c956
Packit 96c956
time_t get_date (const char *p, const time_t *now);
Packit 96c956
Packit 96c956
#endif /* GOT_GETDATE_H */