]> git.ipfire.org Git - thirdparty/squid.git/blob - include/rfc1123.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / include / rfc1123.h
1 /*
2 * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #ifndef _SQUID_RFC1123_H
10 #define _SQUID_RFC1123_H
11
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15
16 extern const char *mkhttpdlogtime(const time_t *);
17 extern const char *mkrfc1123(time_t);
18 extern time_t parse_rfc1123(const char *str);
19
20 #ifdef __cplusplus
21 }
22 #endif
23 #endif /* _SQUID_RFC1123_H */
24