summaryrefslogtreecommitdiff
path: root/hcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'hcache.h')
-rw-r--r--hcache.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/hcache.h b/hcache.h
new file mode 100644
index 0000000..c316e3b
--- /dev/null
+++ b/hcache.h
@@ -0,0 +1,18 @@
+/*
+ * This file is not part of Jam
+ */
+
+/*
+ * hcache.h - handle #includes in source files
+ */
+#ifndef HCACHE_H
+# define HCACHE_H
+
+# include "regexp.h"
+# include "lists.h"
+
+void hcache_init(void);
+void hcache_done(void);
+LIST *hcache(TARGET *t, int rec, regexp *re[], LIST *hdrscan);
+
+#endif