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