Deleted Added
sdiff udiff text old ( 302408 ) new ( 322249 )
full compact
1/* $OpenBSD$ */
2/*
3 * Copyright (c) 2011, 2015 Ingo Schwarze
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};
39
40struct manconf {
41 struct manoutput output;
42 struct manpaths manpath;
43};
44
45
46void manconf_parse(struct manconf *, const char *, char *, char *);
47void manconf_output(struct manoutput *, const char *);
48void manconf_free(struct manconf *);