Upstream qmail 1.01
[qmail] / constmap.h
CommitLineData
2117e02e
MW
1#ifndef CONSTMAP_H
2#define CONSTMAP_H
3
4typedef unsigned long constmap_hash;
5
6struct constmap
7 {
8 int num;
9 constmap_hash mask;
10 constmap_hash *hash;
11 int *first;
12 int *next;
13 char **input;
14 int *inputlen;
15 }
16;
17
18extern int constmap_init();
19extern void constmap_free();
20extern char *constmap();
21
22#endif