1145683Sharti/*
2145683Sharti * Copyright (C) 2005 Max Okumoto.
3145683Sharti *	All rights reserved.
4145683Sharti *
5145683Sharti * Redistribution and use in source and binary forms, with or without
6145683Sharti * modification, are permitted provided that the following conditions
7145683Sharti * are met:
8145683Sharti * 1. Redistributions of source code must retain the above copyright
9145683Sharti *    notice, this list of conditions and the following disclaimer.
10145683Sharti * 2. Redistributions in binary form must reproduce the above copyright
11145683Sharti *    notice, this list of conditions and the following disclaimer in the
12145683Sharti *    documentation and/or other materials provided with the distribution.
13145683Sharti *
14145683Sharti * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15145683Sharti * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16145683Sharti * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17145683Sharti * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
18145683Sharti * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19145683Sharti * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20145683Sharti * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21145683Sharti * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22145683Sharti * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23145683Sharti * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24145683Sharti * SUCH DAMAGE.
25145683Sharti *
26145683Sharti * $FreeBSD$
27145683Sharti */
28145683Sharti#ifndef hash_tables_h_
29145683Sharti#define hash_tables_h_
30145683Sharti
31145683Sharti#include <sys/types.h>
32145683Sharti
33145683Shartiint directive_hash(const u_char *, size_t);
34145683Shartiint keyword_hash(const u_char *, size_t);
35145683Sharti
36145683Sharti#endif
37