Deleted Added
full compact
manconf.h (302408) manconf.h (322249)
1/* $OpenBSD$ */
1/* $Id: manconf.h,v 1.5 2017/07/01 09:47:30 schwarze Exp $ */
2/*
2/*
3 * Copyright (c) 2011, 2015 Ingo Schwarze
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

--- 18 unchanged lines hidden (view full) ---

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;
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

--- 18 unchanged lines hidden (view full) ---

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;
38};
39
40struct manconf {
41 struct manoutput output;
42 struct manpaths manpath;
43};
44
45
46void manconf_parse(struct manconf *, const char *, char *, char *);
39};
40
41struct manconf {
42 struct manoutput output;
43 struct manpaths manpath;
44};
45
46
47void manconf_parse(struct manconf *, const char *, char *, char *);
47void manconf_output(struct manoutput *, const char *);
48int manconf_output(struct manoutput *, const char *, int);
48void manconf_free(struct manconf *);
49void manconf_free(struct manconf *);
50void manpath_base(struct manpaths *);