]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_ETag.cc
Added stub for ETag.cc
[thirdparty/squid.git] / src / tests / stub_ETag.cc
1 #include "squid.h"
2 #include "ETag.h"
3
4 #define STUB_API "ETag.cc"
5 #include "tests/STUB.h"
6
7 int etagParseInit(ETag * , const char *) STUB_RETVAL(0)
8 bool etagIsStrongEqual(const ETag &, const ETag &) STUB_RETVAL(false)
9 bool etagIsWeakEqual(const ETag &, const ETag &) STUB_RETVAL(false)
10
11