summaryrefslogtreecommitdiff
path: root/sqmail-4.3.07/src/include/constmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'sqmail-4.3.07/src/include/constmap.h')
-rw-r--r--sqmail-4.3.07/src/include/constmap.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/sqmail-4.3.07/src/include/constmap.h b/sqmail-4.3.07/src/include/constmap.h
deleted file mode 100644
index 750702e..0000000
--- a/sqmail-4.3.07/src/include/constmap.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#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