]> git.ipfire.org Git - thirdparty/squid.git/blame - src/SBufList.h
Fixed formatting
[thirdparty/squid.git] / src / SBufList.h
CommitLineData
6a17a36d
FC
1#ifndef SQUID_SBUFLIST_H
2#define SQUID_SBUFLIST_H
3
4#include "SBuf.h"
5
6#include <list>
7
8typedef std::list<SBuf> SBufList;
9
10/** check for membership
11 *
12 * \return true if the supplied SBuf is a member of the list
13 * \param case_sensitive one of caseSensitive or caseInsensitive
14 */
15bool IsMember(const SBufList &, const SBuf &, const SBufCaseSensitive isCaseSensitive = caseSensitive);
16
6a17a36d 17#endif /* SQUID_SBUFLIST_H */