blob: ab6eb0ef6a980f5c5a0e395bc55cf1e8b6df4294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
* manpath.h
*
* Copyright (c) 1990, 1991, John W. Eaton.
*
* You may distribute under the terms of the GNU General Public
* License as specified in the file COPYING that comes with the man
* distribution.
*
* John W. Eaton
* jwe@che.utexas.edu
* Department of Chemical Engineering
* The University of Texas at Austin
* Austin, Texas 78712
*/
typedef struct
{
char mandir[MAXPATHLEN];
char bin[MAXPATHLEN];
int type;
} DIRLIST;
/* manpath types */
#define MANPATH_NONE 0
#define MANPATH_MANDATORY 1 /* manpath is mandatory */
#define MANPATH_OPTIONAL 2 /* manpath is optional */
#define MANPATH_MAP 3 /* maps path to manpath */
DIRLIST list[MAXDIRS];
char *tmplist[MAXDIRS];
|