summaryrefslogtreecommitdiff
path: root/tools/build/src/engine/search.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/src/engine/search.h')
-rw-r--r--tools/build/src/engine/search.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/build/src/engine/search.h b/tools/build/src/engine/search.h
new file mode 100644
index 000000000..7e74f7972
--- /dev/null
+++ b/tools/build/src/engine/search.h
@@ -0,0 +1,22 @@
+/*
+ * Copyright 1993, 1995 Christopher Seiwald.
+ *
+ * This file is part of Jam - see jam.c for Copyright information.
+ */
+
+/*
+ * search.h - find a target along $(SEARCH) or $(LOCATE)
+ */
+
+#ifndef SEARCH_SW20111118_H
+#define SEARCH_SW20111118_H
+
+#include "object.h"
+#include "timestamp.h"
+
+void set_explicit_binding( OBJECT * target, OBJECT * locate );
+OBJECT * search( OBJECT * target, timestamp * const time,
+ OBJECT * * another_target, int const file );
+void search_done( void );
+
+#endif