1/*	$Id: main.h,v 1.15 2011/10/06 22:29:12 kristaps Exp $ */
2/*
3 * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17#ifndef	MAIN_H
18#define	MAIN_H
19
20__BEGIN_DECLS
21
22struct	mdoc;
23struct	man;
24
25#define	UNCONST(a)	((void *)(uintptr_t)(const void *)(a))
26
27
28/*
29 * Definitions for main.c-visible output device functions, e.g., -Thtml
30 * and -Tascii.  Note that ascii_alloc() is named as such in
31 * anticipation of latin1_alloc() and so on, all of which map into the
32 * terminal output routines with different character settings.
33 */
34
35void		 *html_alloc(char *);
36void		 *xhtml_alloc(char *);
37void		  html_mdoc(void *, const struct mdoc *);
38void		  html_man(void *, const struct man *);
39void		  html_free(void *);
40
41void		  tree_mdoc(void *, const struct mdoc *);
42void		  tree_man(void *, const struct man *);
43
44void		  man_mdoc(void *, const struct mdoc *);
45void		  man_man(void *, const struct man *);
46
47void		 *locale_alloc(char *);
48void		 *utf8_alloc(char *);
49void		 *ascii_alloc(char *);
50void		  ascii_free(void *);
51
52void		 *pdf_alloc(char *);
53void		 *ps_alloc(char *);
54void		  pspdf_free(void *);
55
56void		  terminal_mdoc(void *, const struct mdoc *);
57void		  terminal_man(void *, const struct man *);
58
59__END_DECLS
60
61#endif /*!MAIN_H*/
62