xref: /original-bsd/usr.bin/man/config.h (revision 6471873a)
1 /*-
2  * Copyright (c) 1993 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)config.h	8.2 (Berkeley) 10/13/93
8  */
9 
10 typedef struct _entry {
11 	struct queue_entry	list;		/* List of items. */
12 	struct queue_entry	tags;		/* List of tags. */
13 	char *s;				/* Associated string. */
14 	size_t len;				/* Length of 's'. */
15 } ENTRY;
16 
17 extern struct queue_entry head;
18 
19 ENTRY	*addlist __P((char *));
20 void	 config __P((char *));
21 void	 debug __P((char *));
22 ENTRY	*getlist __P((char *));
23