/*************************************************************************** * 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