=================================================================== RCS file: /cvs/mandoc/manconf.h,v retrieving revision 1.1 retrieving revision 1.4 diff -u -p -r1.1 -r1.4 --- mandoc/manconf.h 2015/03/27 17:37:25 1.1 +++ mandoc/manconf.h 2017/02/10 15:45:28 1.4 @@ -1,4 +1,4 @@ -/* $OpenBSD: manconf.h,v 1.1 2015/03/27 17:37:25 schwarze Exp $ */ +/* $OpenBSD: manconf.h,v 1.4 2017/02/10 15:45:28 schwarze Exp $ */ /* * Copyright (c) 2011, 2015 Ingo Schwarze * Copyright (c) 2011 Kristaps Dzonsons @@ -35,6 +35,7 @@ struct manoutput { int fragment; int mdoc; int synopsisonly; + int noval; }; struct manconf { @@ -42,10 +43,7 @@ struct manconf { struct manpaths manpath; }; -__BEGIN_DECLS void manconf_parse(struct manconf *, const char *, char *, char *); -void manconf_output(struct manoutput *, const char *); +int manconf_output(struct manoutput *, const char *, int); void manconf_free(struct manconf *); - -__END_DECLS