2002-05-07 18:22:24 -05:00
|
|
|
/* strptime.h
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Ethereal - Network traffic analyzer
|
|
|
|
* By Gerald Combs <gerald@ethereal.com>
|
|
|
|
* Copyright 1998 Gerald Combs
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2010-03-02 15:40:02 -06:00
|
|
|
*
|
2002-05-07 18:22:24 -05:00
|
|
|
* 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
|
|
|
|
* GNU General Public License for more details.
|
2010-03-02 15:40:02 -06:00
|
|
|
*
|
2002-05-07 18:22:24 -05:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2005-11-16 23:35:02 -06:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA.
|
2002-05-07 18:22:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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 *);
|
|
|
|
|
2007-05-12 11:50:49 -05:00
|
|
|
#if defined(OS_WIN32) || defined(G_OS_WIN32)
|
|
|
|
extern char *get_win32_locale_string(int lctype);
|
|
|
|
extern char *translate_win32_picture(const char *);
|
2002-05-07 18:22:24 -05:00
|
|
|
#endif
|
|
|
|
|
2007-05-12 11:50:49 -05:00
|
|
|
#endif
|