]> git.ipfire.org Git - thirdparty/squid.git/blame - lib/libTrie/test/trie-c.c
Renamed squid.h to squid-old.h and config.h to squid.h
[thirdparty/squid.git] / lib / libTrie / test / trie-c.c
CommitLineData
43ae1d95 1/*
2 * Copyright (c) 2002 Robert Collins <rbtcollins@hotmail.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
26ac0430 8 *
43ae1d95 9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
26ac0430 13 *
43ae1d95 14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
17 *
18 */
19
f7f3304a 20#include "squid.h"
43ae1d95 21#include "Trie.h"
22#include <stdio.h>
23
24int
25main (int argc, char **argv)
26{
27 void *aTrie = TrieCreate();
28 if (!TrieAdd (aTrie, "User-Agent", 10, (void *)1)) {
26ac0430
AJ
29 fprintf(stderr,"Could not add User-Agent\n");
30 return 1;
43ae1d95 31 }
32 if (TrieAdd (aTrie, "User-Agent", 10, (void *)2)) {
26ac0430
AJ
33 fprintf(stderr, "Could add duplicate User-Agent\n");
34 return 1;
43ae1d95 35 }
36 if (TrieFind (aTrie, "User-Agent", 10) != (void *)1) {
26ac0430
AJ
37 fprintf(stderr, "Could not find User-Agent\n");
38 return 1;
43ae1d95 39 }
40 TrieDestroy (aTrie);
41 return 0;
42}