[BACK]Return to main.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Annotation of src/usr.bin/mandoc/main.h, Revision 1.15

1.15    ! schwarze    1: /*     $OpenBSD: main.h,v 1.14 2014/12/01 08:05:02 schwarze Exp $ */
1.1       schwarze    2: /*
1.8       schwarze    3:  * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
1.15    ! schwarze    4:  * Copyright (c) 2014 Ingo Schwarze <schwarze@openbsd.org>
1.1       schwarze    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 AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR 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:
1.14      schwarze   19: #define        UNCONST(a)      ((void *)(uintptr_t)(const void *)(a))
                     20:
1.1       schwarze   21: __BEGIN_DECLS
                     22:
1.14      schwarze   23: struct mchars;
1.1       schwarze   24: struct mdoc;
                     25: struct man;
1.4       schwarze   26:
1.11      schwarze   27: /*
1.1       schwarze   28:  * Definitions for main.c-visible output device functions, e.g., -Thtml
                     29:  * and -Tascii.  Note that ascii_alloc() is named as such in
                     30:  * anticipation of latin1_alloc() and so on, all of which map into the
                     31:  * terminal output routines with different character settings.
                     32:  */
                     33:
1.12      schwarze   34: void            *html_alloc(const struct mchars *, char *);
1.1       schwarze   35: void             html_mdoc(void *, const struct mdoc *);
                     36: void             html_man(void *, const struct man *);
                     37: void             html_free(void *);
                     38:
                     39: void             tree_mdoc(void *, const struct mdoc *);
                     40: void             tree_man(void *, const struct man *);
1.9       schwarze   41:
                     42: void             man_mdoc(void *, const struct mdoc *);
1.10      schwarze   43: void             man_man(void *, const struct man *);
1.1       schwarze   44:
1.12      schwarze   45: void            *locale_alloc(const struct mchars *, char *);
                     46: void            *utf8_alloc(const struct mchars *, char *);
                     47: void            *ascii_alloc(const struct mchars *, char *);
1.5       schwarze   48: void             ascii_free(void *);
1.15    ! schwarze   49: void             ascii_sepline(void *);
1.5       schwarze   50:
1.12      schwarze   51: void            *pdf_alloc(const struct mchars *, char *);
                     52: void            *ps_alloc(const struct mchars *, char *);
1.7       schwarze   53: void             pspdf_free(void *);
1.5       schwarze   54:
1.1       schwarze   55: void             terminal_mdoc(void *, const struct mdoc *);
                     56: void             terminal_man(void *, const struct man *);
                     57:
                     58: __END_DECLS