From a293489ee83c8b05d845a162dc2a4de026f3775d Mon Sep 17 00:00:00 2001 From: Erwin Hoffmann Date: Sun, 14 Jan 2024 17:55:54 +0100 Subject: s/qmail 4.3.07 --- sqmail-4.3.07/src/include/constmap.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 sqmail-4.3.07/src/include/constmap.h (limited to 'sqmail-4.3.07/src/include/constmap.h') diff --git a/sqmail-4.3.07/src/include/constmap.h b/sqmail-4.3.07/src/include/constmap.h new file mode 100644 index 0000000..750702e --- /dev/null +++ b/sqmail-4.3.07/src/include/constmap.h @@ -0,0 +1,21 @@ +#ifndef CONSTMAP_H +#define CONSTMAP_H + +typedef unsigned long constmap_hash; + +struct constmap { + int num; + constmap_hash mask; + constmap_hash *hash; + int *first; + int *next; + char **input; + int *inputlen; +} ; + +int constmap_init(struct constmap *,char *,int,int); +int constmap_init_char(struct constmap *,char *,int,int,char); +void constmap_free(); +char *constmap(); + +#endif -- cgit v1.2.3