sq krb_pa_supported_enctypes
[metze/wireshark/wip.git] / wsutil / strptime.h
1 /* strptime.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9
10 #ifndef __STRPTIME_H__
11 #define __STRPTIME_H__
12
13 #include "ws_symbol_export.h"
14
15 /*
16  * Version of "strptime()", for the benefit of OSes that don't have it.
17  */
18 WS_DLL_PUBLIC char *strptime(const char *, const char *, struct tm *);
19
20 #endif