You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.0 KiB
C
23 lines
1.0 KiB
C
/***************************************************************************
|
|
* Copyright (C) by GFZ Potsdam *
|
|
* *
|
|
* You can redistribute and/or modify this program under the *
|
|
* terms of the SeisComP Public License. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* SeisComP Public License for more details. *
|
|
***************************************************************************/
|
|
|
|
|
|
#ifndef STRPTIME_H
|
|
#define STRPTIME_H
|
|
|
|
/*
|
|
* Version of "strptime()", for the benefit of OSes that don't have it.
|
|
*/
|
|
extern char *strptime(const char *, const char *, struct tm *);
|
|
|
|
#endif
|