mirror of
https://github.com/boostorg/build.git
synced 2026-02-14 12:42:11 +00:00
21 lines
337 B
C
21 lines
337 B
C
/*
|
|
* This file is not part of Jam
|
|
*/
|
|
|
|
/*
|
|
* hcache.h - handle #includes in source files
|
|
*/
|
|
#ifndef HCACHE_H
|
|
#define HCACHE_H
|
|
|
|
#include "config.h"
|
|
#include "lists.h"
|
|
#include "regexp.h"
|
|
#include "rules.h"
|
|
|
|
void hcache_init( void );
|
|
void hcache_done( void );
|
|
LIST * hcache( TARGET * t, int rec, regexp * re[], LIST * hdrscan );
|
|
|
|
#endif
|