------------------------------------------------------------ revno: 11751 revision-id: squid3@treenet.co.nz-20110922021415-u2owhtmn7vegtmqj parent: squid3@treenet.co.nz-20110922004626-a8yrwhlpdayt2yda committer: Amos Jeffries branch nick: trunk timestamp: Thu 2011-09-22 14:14:15 +1200 message: STUB: wordlist ------------------------------------------------------------ # Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: squid3@treenet.co.nz-20110922021415-u2owhtmn7vegtmqj # target_branch: http://bzr.squid-cache.org/bzr/squid3/trunk/ # testament_sha1: 24c0b8c6c10d15e271a33e552df81a06d1fae44e # timestamp: 2011-09-22 02:52:15 +0000 # source_branch: http://bzr.squid-cache.org/bzr/squid3/trunk/ # base_revision_id: squid3@treenet.co.nz-20110922004626-\ # a8yrwhlpdayt2yda # # Begin patch === added file 'src/tests/stub_wordlist.cc' --- src/tests/stub_wordlist.cc 1970-01-01 00:00:00 +0000 +++ src/tests/stub_wordlist.cc 2011-09-22 02:14:15 +0000 @@ -0,0 +1,11 @@ +#include "config.h" +#include "wordlist.h" + +#define STUB_API "wordlist.cc" +#include "tests/STUB.h" + +const char *wordlistAdd(wordlist **, const char *) STUB_RETVAL(NULL); +void wordlistAddWl(wordlist **, wordlist *) STUB; +void wordlistJoin(wordlist **, wordlist **) STUB; +wordlist *wordlistDup(const wordlist *) STUB_RETVAL(NULL); +void wordlistDestroy(wordlist **) STUB;