File size: 458 Bytes
158b61b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
/*
* Copyright 1993, 1995 Christopher Seiwald.
*
* This file is part of Jam - see jam.c for Copyright information.
*/
/*
* headers.h - handle #includes in source files
*/
#ifndef HEADERS_SW20111118_H
#define HEADERS_SW20111118_H
#include "object.h"
#include "rules.h"
#include "regexp.h"
void headers( TARGET * t );
#ifdef OPT_HEADER_CACHE_EXT
struct regexp;
LIST * headers1( LIST *l, OBJECT * file, int rec, struct regexp *re[] );
#endif
#endif
|