mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 05:55:02 +03:00
23 lines
493 B
C
23 lines
493 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"
|
|
|
|
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
|