freebsd-dev/contrib/mandoc/mandoc_headers.3

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

747 lines
13 KiB
Groff
Raw Normal View History

2021-11-15 15:35:39 +00:00
.\" $Id: mandoc_headers.3,v 1.34 2021/08/10 12:55:03 schwarze Exp $
2019-07-26 09:51:35 +00:00
.\"
2021-11-15 15:35:39 +00:00
.\" Copyright (c) 2014-2021 Ingo Schwarze <schwarze@openbsd.org>
2019-07-26 09:51:35 +00:00
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
2021-11-15 15:35:39 +00:00
.Dd $Mdocdate: August 10 2021 $
2014-12-25 21:33:25 +00:00
.Dt MANDOC_HEADERS 3
.Os
.Sh NAME
.Nm mandoc_headers
.Nd ordering of mandoc include files
.Sh DESCRIPTION
To support a cleaner coding style, the mandoc header files do not
contain any include directives and do not guard against multiple
inclusion.
The application developer has to make sure that the headers are
included in a proper order, and that no header is included more
than once.
.Pp
The headers and functions form three major groups:
.Sx Parser interface ,
.Sx Parser internals ,
and
.Sx Formatter interface .
.Pp
Various rules are given below prohibiting the inclusion of certain
combinations of headers into the same file.
The intention is to keep the following functional components
separate from each other:
.Pp
.Bl -dash -offset indent -compact
.It
2019-03-29 13:13:30 +00:00
.Xr roff 7
2014-12-25 21:33:25 +00:00
parser
.It
2019-03-29 13:13:30 +00:00
.Xr mdoc 7
2014-12-25 21:33:25 +00:00
parser
.It
2019-03-29 13:13:30 +00:00
.Xr man 7
2014-12-25 21:33:25 +00:00
parser
.It
.Xr tbl 7
parser
.It
.Xr eqn 7
parser
.It
terminal formatters
.It
HTML formatters
.It
search tools
2019-03-29 13:13:30 +00:00
.It
main programs
2014-12-25 21:33:25 +00:00
.El
.Pp
Note that mere usage of an opaque struct type does
2014-12-25 21:33:25 +00:00
.Em not
require inclusion of the header where that type is defined.
.Ss Parser interface
Each of the following headers can be included without including
any other mandoc header.
These headers should be included before any other mandoc headers.
.Bl -tag -width Ds
.It Qq Pa mandoc_aux.h
2019-03-29 13:13:30 +00:00
Memory allocation utility functions; can be used everywhere.
.Pp
2014-12-25 21:33:25 +00:00
Requires
.In sys/types.h
for
.Vt size_t .
2017-06-08 19:29:07 +00:00
.Pp
2019-03-29 13:13:30 +00:00
Provides the functions documented in
2014-12-25 21:33:25 +00:00
.Xr mandoc_malloc 3 .
2016-07-23 11:45:42 +00:00
.It Qq Pa mandoc_ohash.h
2019-03-29 13:13:30 +00:00
Hashing utility functions; can be used everywhere.
.Pp
2017-06-08 19:29:07 +00:00
Requires
.In stddef.h
for
.Vt ptrdiff_t
and
.In stdint.h
for
.Vt uint32_t .
.Pp
2016-07-23 11:45:42 +00:00
Includes
.In ohash.h
and provides
.Fn mandoc_ohash_init .
2014-12-25 21:33:25 +00:00
.It Qq Pa mandoc.h
2019-03-29 13:13:30 +00:00
Error handling, escape sequence, and character utilities;
can be used everywhere.
.Pp
2014-12-25 21:33:25 +00:00
Requires
.In sys/types.h
for
2019-03-29 13:13:30 +00:00
.Vt size_t
and
.In stdio.h
for
.Vt FILE .
2014-12-25 21:33:25 +00:00
.Pp
Provides
.Vt enum mandoc_esc ,
.Vt enum mandocerr ,
.Vt enum mandoclevel ,
2019-03-29 13:13:30 +00:00
the function
.Xr mandoc_escape 3 ,
the functions described in
.Xr mchars_alloc 3 ,
and the
.Fn mandoc_msg*
functions.
.It Qq Pa roff.h
Common data types for all syntax trees and related functions;
can be used everywhere.
.Pp
Provides
2017-07-31 19:17:54 +00:00
.Vt enum mandoc_os ,
2019-03-29 13:13:30 +00:00
.Vt enum mdoc_endbody ,
.Vt enum roff_macroset ,
.Vt enum roff_sec ,
.Vt enum roff_tok ,
.Vt enum roff_type ,
.Vt struct roff_man ,
.Vt struct roff_meta ,
.Vt struct roff_node ,
the constant array
.Va roff_name
and the function
.Fn deroff .
.Pp
Uses pointers to the types
.Vt struct ohash
from
2019-07-26 09:51:35 +00:00
.Qq Pa mandoc_ohash.h ,
2019-03-29 13:13:30 +00:00
.Vt struct mdoc_arg
and
.Vt union mdoc_data
from
2019-07-26 09:51:35 +00:00
.Qq Pa mdoc.h ,
2019-03-29 13:13:30 +00:00
.Vt struct tbl_span
from
2019-07-26 09:51:35 +00:00
.Qq Pa tbl.h ,
2019-03-29 13:13:30 +00:00
and
.Vt struct eqn_box
from
2019-07-26 09:51:35 +00:00
.Qq Pa eqn.h
2019-03-29 13:13:30 +00:00
as opaque struct members.
.It Qq Pa tbl.h
Data structures for the
.Xr tbl 7
parse tree; can be used everywhere.
.Pp
Requires
.In sys/types.h
for
2021-11-15 15:35:39 +00:00
.Vt size_t
and
.Qq Pa mandoc.h
for
.Vt enum mandoc_esc .
2019-03-29 13:13:30 +00:00
.Pp
Provides
2014-12-25 21:33:25 +00:00
.Vt enum tbl_cellt ,
.Vt enum tbl_datt ,
.Vt enum tbl_spant ,
.Vt struct tbl_opts ,
.Vt struct tbl_cell ,
.Vt struct tbl_row ,
.Vt struct tbl_dat ,
2019-03-29 13:13:30 +00:00
and
.Vt struct tbl_span .
.It Qq Pa eqn.h
Data structures for the
.Xr eqn 7
parse tree; can be used everywhere.
.Pp
Requires
.In sys/types.h
for
.Vt size_t .
.Pp
Provides
.Vt enum eqn_boxt ,
.Vt enum eqn_fontt ,
.Vt enum eqn_post ,
and
.Vt struct eqn_box .
.It Qq Pa mandoc_parse.h
Top level parser interface, for use in the main program
and in the main parser, but not in formatters.
.Pp
Requires
2019-07-26 09:51:35 +00:00
.Qq Pa mandoc.h
2019-03-29 13:13:30 +00:00
for
.Vt enum mandocerr
and
.Vt enum mandoclevel
and
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h
2019-03-29 13:13:30 +00:00
for
.Vt enum mandoc_os .
2014-12-25 21:33:25 +00:00
.Pp
2016-01-15 23:08:59 +00:00
Uses the opaque type
2014-12-25 21:33:25 +00:00
.Vt struct mparse
from
.Pa read.c
for function prototypes.
2019-03-29 13:13:30 +00:00
Uses
.Vt struct roff_meta
2014-12-25 21:33:25 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h
2016-07-23 11:45:42 +00:00
as an opaque type for function prototypes.
2017-07-31 19:17:54 +00:00
.It Qq Pa mandoc_xr.h
2019-03-29 13:13:30 +00:00
Cross reference validation; intended for use in the main program
and in parsers, but not in formatters.
.Pp
2017-07-31 19:17:54 +00:00
Provides
.Vt struct mandoc_xr
and the functions
.Fn mandoc_xr_reset ,
.Fn mandoc_xr_add ,
.Fn mandoc_xr_get ,
and
.Fn mandoc_xr_free .
2021-11-15 15:35:39 +00:00
.It Qq Pa tag.h
Internal interfaces to tag syntax tree nodes,
for use by validation modules only.
.Pp
Requires
.In limits.h
for
.Dv INT_MAX .
.Pp
Provides the functions
.Fn tag_alloc ,
.Fn tag_put ,
.Fn tag_check ,
and
.Fn tag_free
and some
.Dv TAG_*
constants.
.Pp
Uses the type
.Vt struct roff_node
from
.Qq Pa roff.h
as an opaque type for function prototypes.
2016-01-15 23:08:59 +00:00
.El
.Pp
The following two require
.Qq Pa roff.h
but no other mandoc headers.
Afterwards, any other mandoc headers can be included as needed.
.Bl -tag -width Ds
2014-12-25 21:33:25 +00:00
.It Qq Pa mdoc.h
Requires
.In sys/types.h
for
2016-07-23 11:45:42 +00:00
.Vt size_t .
2014-12-25 21:33:25 +00:00
.Pp
Provides
.Vt enum mdocargt ,
.Vt enum mdoc_auth ,
2016-07-23 11:45:42 +00:00
.Vt enum mdoc_disp ,
2014-12-25 21:33:25 +00:00
.Vt enum mdoc_font ,
2016-07-23 11:45:42 +00:00
.Vt enum mdoc_list ,
2014-12-25 21:33:25 +00:00
.Vt struct mdoc_argv ,
.Vt struct mdoc_arg ,
.Vt struct mdoc_an ,
2016-07-23 11:45:42 +00:00
.Vt struct mdoc_bd ,
2014-12-25 21:33:25 +00:00
.Vt struct mdoc_bf ,
2016-07-23 11:45:42 +00:00
.Vt struct mdoc_bl ,
2014-12-25 21:33:25 +00:00
.Vt struct mdoc_rs ,
2016-07-23 11:45:42 +00:00
.Vt union mdoc_data ,
2014-12-25 21:33:25 +00:00
and the functions
.Fn mdoc_*
described in
.Xr mandoc 3 .
.Pp
2019-03-29 13:13:30 +00:00
Uses the types
.Vt struct roff_node
2014-12-25 21:33:25 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h
2019-03-29 13:13:30 +00:00
and
.Vt struct roff_man
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff_int.h
2019-03-29 13:13:30 +00:00
as opaque types for function prototypes.
2014-12-25 21:33:25 +00:00
.Pp
When this header is included, the same file should not include
2019-03-29 13:13:30 +00:00
internals of different parsers.
2014-12-25 21:33:25 +00:00
.It Qq Pa man.h
2016-01-15 23:08:59 +00:00
Provides the functions
2014-12-25 21:33:25 +00:00
.Fn man_*
described in
.Xr mandoc 3 .
.Pp
Uses the type
2016-07-23 11:45:42 +00:00
.Vt struct roff_man
2014-12-25 21:33:25 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h
2014-12-25 21:33:25 +00:00
as an opaque type for function prototypes.
.Pp
When this header is included, the same file should not include
2019-03-29 13:13:30 +00:00
internals of different parsers.
2014-12-25 21:33:25 +00:00
.El
.Ss Parser internals
2019-03-29 13:13:30 +00:00
Most of the following headers require inclusion of a parser interface header
2017-06-08 19:29:07 +00:00
before they can be included.
All parser interface headers should precede all parser internal headers.
When any parser internal headers are included, the same file should
not include any formatter headers.
2014-12-25 21:33:25 +00:00
.Bl -tag -width Ds
.It Qq Pa libmandoc.h
Requires
.In sys/types.h
for
2016-07-23 11:45:42 +00:00
.Vt size_t
2016-01-15 23:08:59 +00:00
and
2016-07-23 11:45:42 +00:00
.Qq Pa mandoc.h
2016-01-15 23:08:59 +00:00
for
2016-07-23 11:45:42 +00:00
.Vt enum mandocerr .
2014-12-25 21:33:25 +00:00
.Pp
Provides
.Vt struct buf ,
utility functions needed by multiple parsers,
and the top-level functions to call the parsers.
.Pp
2019-03-29 13:13:30 +00:00
Uses the opaque type
2014-12-25 21:33:25 +00:00
.Vt struct roff
from
.Pa roff.c
for function prototypes.
2017-07-31 19:17:54 +00:00
Uses the type
2016-07-23 11:45:42 +00:00
.Vt struct roff_man
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h
2017-07-31 19:17:54 +00:00
as an opaque type for function prototypes.
2016-07-23 11:45:42 +00:00
.It Qq Pa roff_int.h
2019-03-29 13:13:30 +00:00
Parser internals shared by multiple parsers.
Can be used in all parsers, but not in main programs or formatters.
.Pp
2016-07-23 11:45:42 +00:00
Requires
.Qq Pa roff.h
for
2019-03-29 13:13:30 +00:00
.Vt enum roff_type
and
.Vt enum roff_tok .
2016-07-23 11:45:42 +00:00
.Pp
2019-03-29 13:13:30 +00:00
Provides
.Vt enum roff_next ,
.Vt struct roff_man ,
functions named
2016-07-23 11:45:42 +00:00
.Fn roff_*
2019-03-29 13:13:30 +00:00
to handle roff nodes,
.Fn roffhash_alloc ,
.Fn roffhash_find ,
.Fn roffhash_free ,
and
.Fn roff_validate ,
and the two special functions
2016-07-23 11:45:42 +00:00
.Fn man_breakscope
and
.Fn mdoc_argv_free
because the latter two are needed by
2019-07-26 09:51:35 +00:00
.Pa roff.c .
2016-07-23 11:45:42 +00:00
.Pp
Uses the types
2019-03-29 13:13:30 +00:00
.Vt struct ohash
from
2019-07-26 09:51:35 +00:00
.Qq Pa mandoc_ohash.h ,
2016-07-23 11:45:42 +00:00
.Vt struct roff_node
2019-03-29 13:13:30 +00:00
and
.Vt struct roff_meta
2014-12-25 21:33:25 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h ,
2019-03-29 13:13:30 +00:00
.Vt struct roff
from
.Pa roff.c ,
2014-12-25 21:33:25 +00:00
and
2016-07-23 11:45:42 +00:00
.Vt struct mdoc_arg
2014-12-25 21:33:25 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa mdoc.h
2014-12-25 21:33:25 +00:00
as opaque types for function prototypes.
.It Qq Pa libmdoc.h
Requires
2017-06-08 19:29:07 +00:00
.Qq Pa roff.h
for
.Vt enum roff_tok
and
2019-03-29 13:13:30 +00:00
.Vt enum roff_sec .
2014-12-25 21:33:25 +00:00
.Pp
Provides
.Vt enum margserr ,
.Vt enum mdelim ,
.Vt struct mdoc_macro ,
and many functions internal to the
.Xr mdoc 7
parser.
.Pp
2016-07-23 11:45:42 +00:00
Uses the types
2019-03-29 13:13:30 +00:00
.Vt struct roff_node
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h ,
2016-07-23 11:45:42 +00:00
.Vt struct roff_man
2019-03-29 13:13:30 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff_int.h ,
2014-12-25 21:33:25 +00:00
and
2019-03-29 13:13:30 +00:00
.Vt struct mdoc_arg
2014-12-25 21:33:25 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa mdoc.h
2016-07-23 11:45:42 +00:00
as opaque types for function prototypes.
2014-12-25 21:33:25 +00:00
.Pp
When this header is included, the same file should not include
2019-03-29 13:13:30 +00:00
interfaces of different parsers.
2014-12-25 21:33:25 +00:00
.It Qq Pa libman.h
2017-06-08 19:29:07 +00:00
Requires
.Qq Pa roff.h
for
.Vt enum roff_tok .
.Pp
2014-12-25 21:33:25 +00:00
Provides
2016-07-23 11:45:42 +00:00
.Vt struct man_macro
and some functions internal to the
2014-12-25 21:33:25 +00:00
.Xr man 7
parser.
.Pp
2016-07-23 11:45:42 +00:00
Uses the types
.Vt struct roff_node
2014-12-25 21:33:25 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h
2019-03-29 13:13:30 +00:00
and
.Vt struct roff_man
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff_int.h
2016-07-23 11:45:42 +00:00
as opaque types for function prototypes.
2014-12-25 21:33:25 +00:00
.Pp
When this header is included, the same file should not include
2019-03-29 13:13:30 +00:00
interfaces of different parsers.
.It Qq Pa eqn_parse.h
External interface of the
.Xr eqn 7
parser, for use in the
.Xr roff 7
and
.Xr eqn 7
parsers only.
.Pp
2014-12-25 21:33:25 +00:00
Requires
.In sys/types.h
for
2019-03-29 13:13:30 +00:00
.Vt size_t .
.Pp
Provides
.Vt struct eqn_node
and the functions
.Fn eqn_alloc ,
.Fn eqn_box_new ,
.Fn eqn_box_free ,
.Fn eqn_free ,
.Fn eqn_parse ,
.Fn eqn_read ,
2017-07-31 19:17:54 +00:00
and
2019-03-29 13:13:30 +00:00
.Fn eqn_reset .
.Pp
Uses the type
.Vt struct eqn_box
from
2019-07-26 09:51:35 +00:00
.Qq Pa mandoc.h
2019-03-29 13:13:30 +00:00
as an opaque type for function prototypes.
Uses the types
.Vt struct roff_node
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h
2014-12-25 21:33:25 +00:00
and
2019-03-29 13:13:30 +00:00
.Vt struct eqn_def
from
.Pa eqn.c
as opaque struct members.
2014-12-25 21:33:25 +00:00
.Pp
2019-03-29 13:13:30 +00:00
When this header is included, the same file should not include
internals of different parsers.
.It Qq Pa tbl_parse.h
External interface of the
2014-12-25 21:33:25 +00:00
.Xr tbl 7
2019-03-29 13:13:30 +00:00
parser, for use in the
.Xr roff 7
2014-12-25 21:33:25 +00:00
and
2019-03-29 13:13:30 +00:00
.Xr tbl 7
parsers only.
2014-12-25 21:33:25 +00:00
.Pp
2019-03-29 13:13:30 +00:00
Provides the functions documented in
.Xr tbl 3 .
.Pp
Uses the types
.Vt struct tbl_span
from
2019-07-26 09:51:35 +00:00
.Qq Pa tbl.h
2019-03-29 13:13:30 +00:00
and
.Vt struct tbl_node
2014-12-25 21:33:25 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa tbl_int.h
2019-03-29 13:13:30 +00:00
as opaque types for function prototypes.
2014-12-25 21:33:25 +00:00
.Pp
When this header is included, the same file should not include
2019-03-29 13:13:30 +00:00
internals of different parsers.
.It Qq Pa tbl_int.h
Internal interfaces of the
.Xr tbl 7
parser, for use inside the
.Xr tbl 7
parser only.
.Pp
Requires
.Qq Pa tbl.h
for
.Vt struct tbl_opts .
.Pp
Provides
.Vt enum tbl_part ,
.Vt struct tbl_node ,
and the functions
.Fn tbl_option ,
.Fn tbl_layout ,
.Fn tbl_data ,
.Fn tbl_cdata ,
and
.Fn tbl_reset .
.Pp
When this header is included, the same file should not include
interfaces of different parsers.
2014-12-25 21:33:25 +00:00
.El
.Ss Formatter interface
These headers should be included after any parser interface headers.
No parser internal headers should be included by the same file.
.Bl -tag -width Ds
.It Qq Pa out.h
Requires
.In sys/types.h
for
.Vt size_t .
.Pp
Provides
.Vt enum roffscale ,
.Vt struct roffcol ,
.Vt struct roffsu ,
.Vt struct rofftbl ,
.Fn a2roffsu ,
and
.Fn tblcalc .
.Pp
Uses
.Vt struct tbl_span
from
2019-07-26 09:51:35 +00:00
.Qq Pa mandoc.h
2014-12-25 21:33:25 +00:00
as an opaque type for function prototypes.
.Pp
When this header is included, the same file should not include
2019-07-26 09:51:35 +00:00
.Qq Pa mansearch.h .
2014-12-25 21:33:25 +00:00
.It Qq Pa term.h
Requires
.In sys/types.h
for
.Vt size_t
and
.Qq Pa out.h
for
.Vt struct roffsu
and
.Vt struct rofftbl .
.Pp
Provides
.Vt enum termenc ,
.Vt enum termfont ,
.Vt enum termtype ,
.Vt struct termp_tbl ,
.Vt struct termp ,
2017-06-08 19:29:07 +00:00
.Fn roff_term_pre ,
2014-12-25 21:33:25 +00:00
and many terminal formatting functions.
.Pp
2016-01-15 23:08:59 +00:00
Uses the opaque type
2014-12-25 21:33:25 +00:00
.Vt struct termp_ps
from
.Pa term_ps.c .
Uses
.Vt struct tbl_span
and
2017-07-31 19:17:54 +00:00
.Vt struct eqn_box
2014-12-25 21:33:25 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa mandoc.h
2016-01-15 23:08:59 +00:00
and
.Vt struct roff_meta
2017-06-08 19:29:07 +00:00
and
.Vt struct roff_node
2016-01-15 23:08:59 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h
2014-12-25 21:33:25 +00:00
as opaque types for function prototypes.
.Pp
When this header is included, the same file should not include
2019-07-26 09:51:35 +00:00
.Qq Pa html.h
2014-12-25 21:33:25 +00:00
or
2019-07-26 09:51:35 +00:00
.Qq Pa mansearch.h .
2021-11-15 15:35:39 +00:00
.It Qq Pa tag_term.h
Requires
.In sys/types.h
for
.Vt size_t
and
.In stdio.h
for
.Vt FILE .
.Pp
Provides an interface to generate
.Xr ctags 1
files for the
.Ic :t
functionality mentioned in
.Xr man 1 .
.Pp
Uses the type
.Vt struct roff_node
from
.Qq Pa roff.h
as an opaque type for function prototypes.
.Pp
When this header is included, the same file should not include
.Qq Pa html.h
or
.Qq Pa mansearch.h .
2014-12-25 21:33:25 +00:00
.It Qq Pa html.h
Requires
.In sys/types.h
for
2019-03-29 13:13:30 +00:00
.Vt size_t ,
2019-07-26 09:51:35 +00:00
.Qq Pa mandoc.h
2019-03-29 13:13:30 +00:00
for
.Vt enum mandoc_esc ,
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h
for
.Vt enum roff_tok ,
2014-12-25 21:33:25 +00:00
and
.Qq Pa out.h
for
.Vt struct roffsu
and
.Vt struct rofftbl .
.Pp
Provides
.Vt enum htmltag ,
.Vt enum htmlattr ,
.Vt enum htmlfont ,
.Vt struct tag ,
.Vt struct tagq ,
.Vt struct htmlpair ,
.Vt struct html ,
2017-06-08 19:29:07 +00:00
.Fn roff_html_pre ,
2014-12-25 21:33:25 +00:00
and many HTML formatting functions.
.Pp
2017-06-08 19:29:07 +00:00
Uses
.Vt struct tbl_span
and
2017-07-31 19:17:54 +00:00
.Vt struct eqn_box
2017-06-08 19:29:07 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa mandoc.h
2017-06-08 19:29:07 +00:00
and
.Vt struct roff_node
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h
2017-06-08 19:29:07 +00:00
as opaque types for function prototypes.
.Pp
2014-12-25 21:33:25 +00:00
When this header is included, the same file should not include
2021-11-15 15:35:39 +00:00
.Qq Pa term.h ,
.Qq Pa tab_term.h ,
2014-12-25 21:33:25 +00:00
or
2019-07-26 09:51:35 +00:00
.Qq Pa mansearch.h .
2014-12-25 21:33:25 +00:00
.It Qq Pa main.h
Provides the top level steering functions for all formatters.
.Pp
2016-07-23 11:45:42 +00:00
Uses the type
2019-03-29 13:13:30 +00:00
.Vt struct roff_meta
2014-12-25 21:33:25 +00:00
from
2019-07-26 09:51:35 +00:00
.Qq Pa roff.h
2016-07-23 11:45:42 +00:00
as an opaque type for function prototypes.
2016-01-15 23:08:59 +00:00
.It Qq Pa manconf.h
2014-12-25 21:33:25 +00:00
Requires
.In sys/types.h
for
.Vt size_t .
.Pp
Provides
2016-01-15 23:08:59 +00:00
.Vt struct manconf ,
.Vt struct manpaths ,
.Vt struct manoutput ,
2014-12-25 21:33:25 +00:00
and the functions
2016-01-15 23:08:59 +00:00
.Fn manconf_parse ,
.Fn manconf_output ,
2017-07-31 19:17:54 +00:00
.Fn manconf_free ,
2014-12-25 21:33:25 +00:00
and
2017-07-31 19:17:54 +00:00
.Fn manpath_base .
2014-12-25 21:33:25 +00:00
.It Qq Pa mansearch.h
Requires
.In sys/types.h
for
.Vt size_t
and
.In stdint.h
for
.Vt uint64_t .
.Pp
Provides
.Vt enum argmode ,
.Vt struct manpage ,
.Vt struct mansearch ,
and the functions
2017-06-08 19:29:07 +00:00
.Fn mansearch
2014-12-25 21:33:25 +00:00
and
.Fn mansearch_free .
.Pp
Uses
.Vt struct manpaths
from
2019-07-26 09:51:35 +00:00
.Qq Pa manconf.h
2014-12-25 21:33:25 +00:00
as an opaque type for function prototypes.
.Pp
When this header is included, the same file should not include
2019-07-26 09:51:35 +00:00
.Qq Pa out.h ,
.Qq Pa term.h ,
2021-11-15 15:35:39 +00:00
.Qq Pa tab_term.h ,
2014-12-25 21:33:25 +00:00
or
2019-07-26 09:51:35 +00:00
.Qq Pa html.h .
2014-12-25 21:33:25 +00:00
.El