~vcs-imports/a2ps/trunk

« back to all changes in this revision

Viewing changes to liba2ps/document.h

  • Committer: David Seifert
  • Date: 2017-09-10 09:11:05 UTC
  • Revision ID: git-v1:224c25d8acd3c30b965b9c9dd976c256d054d7be
Rename `lib` dir to `liba2ps` in preparation for gnulib

* gnulib uses `lib` by default for its modules and we
  prefer leaving these defaults, which make bootstrapping
  a bit easier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* document.h - handle report of various documenting formats
 
2
   Copyright 1988-2017 Free Software Foundation, Inc.
 
3
 
 
4
   This program is free software; you can redistribute it and/or modify
 
5
   it under the terms of the GNU General Public License as published by
 
6
   the Free Software Foundation; either version 3, or (at your option)
 
7
   any later version.
 
8
 
 
9
   This program is distributed in the hope that it will be useful,
 
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
   GNU General Public License for more details.
 
13
 
 
14
   You should have received a copy of the GNU General Public License
 
15
   along with this program; if not, write to the Free Software
 
16
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
 
17
   02110-1301, USA.  */
 
18
 
 
19
#ifndef _DOCUMENT_H_
 
20
#define _DOCUMENT_H_
 
21
 
 
22
void
 
23
authors_print_plain (const unsigned char * authors, FILE * stream,
 
24
                             const char * before);
 
25
void
 
26
authors_print_html (const unsigned char * authors, FILE * stream,
 
27
                            const char * before);
 
28
void
 
29
authors_print_texinfo (const unsigned char * authors, FILE * stream,
 
30
                               const char * before);
 
31
 
 
32
typedef void (*documentation_fn_t) (const unsigned char * documentation,
 
33
                                   const char * format,  FILE * stream) ;
 
34
 
 
35
void
 
36
documentation_print_plain (const unsigned char * documentation,
 
37
                                   const char * format,  FILE * stream);
 
38
 
 
39
void
 
40
documentation_print_html (const unsigned char * documentation, 
 
41
                                  const char * format, FILE * stream);
 
42
 
 
43
void
 
44
documentation_print_texinfo (const unsigned char * documentation,
 
45
                                     const char * format, FILE * stream);
 
46
 
 
47
#endif /* !defined(_DOCUMENT_H_) */