chiark / gitweb /
Upstream qmail 1.01
[qmail] / constmap.h
1 #ifndef CONSTMAP_H
2 #define CONSTMAP_H
3
4 typedef unsigned long constmap_hash;
5
6 struct 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
18 extern int constmap_init();
19 extern void constmap_free();
20 extern char *constmap();
21
22 #endif