File: identify.h

package info (click to toggle)
lilo 21-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 812 kB
  • ctags: 895
  • sloc: ansic: 3,420; asm: 2,546; sh: 767; perl: 607; makefile: 193; cpp: 3
file content (17 lines) | stat: -rw-r--r-- 591 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* identify.h  -  Translate label names to kernel paths */

/* Copyright 1992-1995 Werner Almesberger. See file COPYING for details. */


#ifndef IDENTIFY_H
#define IDENTIFY_H

void identify_image(char *label,char *options);

/* Identifies the image which is referenced by the label. Prints the path name
   to standard output. If options is non-NULL, the following characters are
   used to filter the selection: i = traditional image, c = compound image,
   v = verify that the file exists. An error message is printed to standard
   error if no appropriate image can be found. */

#endif