aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/strptime.h
blob: b574bdbf477070944cf2bfd23e15df63e5e3fc4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/** @file
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef __STRPTIME_H__
#define __STRPTIME_H__

#include <ws_symbol_export.h>
#include <time.h>

/*
 * Version of "strptime()", for the benefit of OSes that don't have it.
 */
WS_DLL_LOCAL
char *strptime_gnulib(const char *s, const char *format, struct tm *tm);

#endif