1 /* 2 * This file is not part of Jam 3 */ 4 5 /* 6 * hcache.h - handle #includes in source files 7 */ 8 #ifndef HCACHE_H 9 #define HCACHE_H 10 11 #include "config.h" 12 #include "lists.h" 13 #include "regexp.h" 14 #include "rules.h" 15 16 void hcache_init( void ); 17 void hcache_done( void ); 18 LIST * hcache( TARGET * t, int rec, regexp * re[], LIST * hdrscan ); 19 20 #endif 21