mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 01:12:13 +00:00
File timestamps displayed with -d+3 debug output now presented in UTC (+0000) timezone. Other related minor stylistic changes: - timestamp_from_target() renamed to timestamp_from_path() - timestamp_from_target() parameter order switched - comment updates - added some const function parameter modifiers - some header #include directives reordered alphabetically [SVN r79501]
22 lines
430 B
C
22 lines
430 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)
|
|
*/
|
|
|
|
#ifndef SEARCH_SW20111118_H
|
|
#define SEARCH_SW20111118_H
|
|
|
|
#include "object.h"
|
|
#include "timestamp.h"
|
|
|
|
OBJECT * search( OBJECT * target, timestamp * const time,
|
|
OBJECT * * another_target, int const file );
|
|
void search_done( void );
|
|
|
|
#endif
|