]> git.ipfire.org Git - thirdparty/squid.git/blame - include/rfc1123.h
SourceFormat Enforcement
[thirdparty/squid.git] / include / rfc1123.h
CommitLineData
5c193dec 1/*
4ac4a490 2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
5c193dec
AJ
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
25f98340 9#ifndef _SQUID_RFC1123_H
a4d9ba8f 10#define _SQUID_RFC1123_H
25f98340
AJ
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
f53969cc
SM
16extern const char *mkhttpdlogtime(const time_t *);
17extern const char *mkrfc1123(time_t);
18extern time_t parse_rfc1123(const char *str);
25f98340
AJ
19
20#ifdef __cplusplus
21}
22#endif
23#endif /* _SQUID_RFC1123_H */
f53969cc 24