]> git.ipfire.org Git - thirdparty/squid.git/blame - src/StrList.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / StrList.h
CommitLineData
28204b3b 1/*
4ac4a490 2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
28204b3b 3 *
bbc27441
AJ
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.
28204b3b
FC
7 */
8
bbc27441
AJ
9/* DEBUG: section 66 HTTP Header Tools */
10
28204b3b
FC
11#ifndef SQUID_STRLIST_H_
12#define SQUID_STRLIST_H_
13
14class String;
15
8a648e8d
FC
16void strListAdd(String * str, const char *item, char del);
17int strListIsMember(const String * str, const char *item, char del);
18int strListIsSubstr(const String * list, const char *s, char del);
19int strListGetItem(const String * str, char del, const char **item, int *ilen, const char **pos);
28204b3b
FC
20
21#endif /* SQUID_STRLIST_H_ */
f53969cc 22