]> git.ipfire.org Git - thirdparty/squid.git/blob - src/StrList.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / StrList.h
1 /*
2 * Copyright (C) 1996-2017 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 /* DEBUG: section 66 HTTP Header Tools */
10
11 #ifndef SQUID_STRLIST_H_
12 #define SQUID_STRLIST_H_
13
14 class String;
15
16 void strListAdd(String * str, const char *item, char del);
17 int strListIsMember(const String * str, const char *item, char del);
18 int strListIsSubstr(const String * list, const char *s, char del);
19 int strListGetItem(const String * str, char del, const char **item, int *ilen, const char **pos);
20
21 #endif /* SQUID_STRLIST_H_ */
22