1 /*
2  * Copyright 1993, 1995 Christopher Seiwald.
3  *
4  * This file is part of Jam - see jam.c for Copyright information.
5  */
6 
7 /*
8  * search.h - find a target along $(SEARCH) or $(LOCATE)
9  */
10 
11 #ifndef SEARCH_SW20111118_H
12 #define SEARCH_SW20111118_H
13 
14 #include "config.h"
15 #include "object.h"
16 #include "timestamp.h"
17 
18 void set_explicit_binding( OBJECT * target, OBJECT * locate );
19 OBJECT * search( OBJECT * target, timestamp * const time,
20     OBJECT * * another_target, int const file );
21 void search_done( void );
22 
23 #endif
24