| 1 | /* text.h -- Text output | 
|---|
| 2 | Copyright (c) 1993-1995 Eberhard Mattes | 
|---|
| 3 |  | 
|---|
| 4 | This file is part of emxdoc. | 
|---|
| 5 |  | 
|---|
| 6 | emxdoc is free software; you can redistribute it and/or modify it | 
|---|
| 7 | under the terms of the GNU General Public License as published by | 
|---|
| 8 | the Free Software Foundation; either version 2, or (at your option) | 
|---|
| 9 | any later version. | 
|---|
| 10 |  | 
|---|
| 11 | emxdoc is distributed in the hope that it will be useful, | 
|---|
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
| 14 | GNU General Public License for more details. | 
|---|
| 15 |  | 
|---|
| 16 | You should have received a copy of the GNU General Public License | 
|---|
| 17 | along with emxdoc; see the file COPYING.  If not, write to | 
|---|
| 18 | the Free Software Foundation, 59 Temple Place - Suite 330, | 
|---|
| 19 | Boston, MA 02111-1307, USA.  */ | 
|---|
| 20 |  | 
|---|
| 21 |  | 
|---|
| 22 | void text_output (const uchar *p, int may_break); | 
|---|
| 23 | void text_heading1 (void); | 
|---|
| 24 | void text_heading2 (uchar *s); | 
|---|
| 25 | void text_see_also_start (void); | 
|---|
| 26 | void text_see_also_end (const uchar *s); | 
|---|
| 27 | void text_description_item (const uchar *s); | 
|---|
| 28 | void text_enumerate_item (void); | 
|---|
| 29 | void text_itemize_item (void); | 
|---|
| 30 | void text_list_item (const uchar *s); | 
|---|
| 31 | void text_copy (void); | 
|---|
| 32 | void text_verbatim_start (enum tag tag_end, int *ptmargin); | 
|---|
| 33 | void text_verbatim_line (enum tag tag_end, int tmargin, uchar *compat); | 
|---|
| 34 | void text_function (void); | 
|---|
| 35 | void text_prototype_start (uchar *compat); | 
|---|
| 36 | void text_prototype_end (void); | 
|---|
| 37 | void text_toc_line (const uchar *s, const struct toc *tp); | 
|---|
| 38 | void text_table_start (int do_indent, int *ptmargin); | 
|---|
| 39 | void text_table_line (const uchar *s, int tmargin); | 
|---|
| 40 | void text_sample_file (const uchar *s); | 
|---|
| 41 | void text_libref_section (const uchar *s); | 
|---|
| 42 | void text_hyphenation (const char *name); | 
|---|