repo.or.cz
/
k8jam.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
regexp engine now undestands some character classes (like :space:) and non-greedy ops
[k8jam.git]
/
src
/
hcache.h
blob
62f0d0a51dbb9a954632a76e24e2d7eac0a066bf
1
/*
2
* hcache.h - handle #includes in source files
3
*/
4
#ifndef JAMH_HCACHE_H
5
#define JAMH_HCACHE_H
6
7
8
extern
int
optShowHCacheStats
;
9
extern
int
optShowHCacheInfo
;
10
11
12
extern
void
hcache_init
(
void
);
13
extern
void
hcache_done
(
void
);
14
extern
LIST
*
hcache
(
TARGET
*
t
,
LIST
*
hdrscan
);
15
16
17
#endif