chiark
/
gitweb
/
~mdw
/
qmail
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
17fb1cbc68ee864ac1b39a7d337d184f0928e644
[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