mirror of
https://github.com/boostorg/build.git
synced 2026-02-14 00:32:11 +00:00
Matt Armstrong, from jamming mailing list. * new/search.h (search): Add a new parameter 'another_target', which returns the name of a target already bound to the same location via LOCATE. * new/search.c (search): Ajust the search algorithm to check for targets bound to searched directories. [SVN r18887]
12 lines
256 B
C
12 lines
256 B
C
/*
|
|
* 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)
|
|
*/
|
|
|
|
char *search( char *target, time_t *time, char **another_target );
|