Add externs to avoid multiple definitions, and then add missing definitions.
[rrq/maintain_lilo.git] / src / identify.h
1 /* identify.h  -  Translate label names to kernel paths
2  * 
3  * Copyright 1992-1995 Werner Almesberger
4  * Copyright 1999-2004 John Coffman
5  * Copyright 2009-2011 Joachim Wiedorn
6  * All rights reserved.
7  * 
8  * Licensed under the terms contained in the file 'COPYING'
9  * in the source directory.
10  */
11
12 #ifndef IDENTIFY_H
13 #define IDENTIFY_H
14
15 void identify_image(char *label,char *options);
16
17 /* Identifies the image which is referenced by the label. Prints the path name
18    to standard output. If options is non-NULL, the following characters are
19    used to filter the selection: i = traditional image, c = compound image,
20    v = verify that the file exists. An error message is printed to standard
21    error if no appropriate image can be found. */
22
23 #endif