xref: /illumos-gate/usr/src/cmd/mandoc/manconf.h (revision f4a6f97e1baae5b3d0df9a121730f1e3cc7bfbca)
1 /*	$Id: manconf.h,v 1.5 2017/07/01 09:47:30 schwarze Exp $ */
2 /*
3  * Copyright (c) 2011, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
4  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 /* List of unique, absolute paths to manual trees. */
20 
21 struct	manpaths {
22 	char	**paths;
23 	size_t	  sz;
24 };
25 
26 /* Data from -O options and man.conf(5) output directives. */
27 
28 struct	manoutput {
29 	char	 *includes;
30 	char	 *man;
31 	char	 *paper;
32 	char	 *style;
33 	size_t	  indent;
34 	size_t	  width;
35 	int	  fragment;
36 	int	  mdoc;
37 	int	  synopsisonly;
38 	int	  noval;
39 };
40 
41 struct	manconf {
42 	struct manoutput	  output;
43 	struct manpaths		  manpath;
44 };
45 
46 
47 void	 manconf_parse(struct manconf *, const char *, char *, char *);
48 int	 manconf_output(struct manoutput *, const char *, int);
49 void	 manconf_free(struct manconf *);
50 void	 manpath_base(struct manpaths *);
51