xref: /netbsd-src/external/gpl2/texinfo/dist/makeinfo/footnote.h (revision 29619d2afe564e54d657b83e5a3ae89584f83720)
1 /*	$NetBSD: footnote.h,v 1.1.1.1 2016/01/14 00:11:29 christos Exp $	*/
2 
3 /* footnote.h -- declarations for footnote.c.
4    Id: footnote.h,v 1.2 2004/04/11 17:56:47 karl Exp
5 
6    Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
7    Foundation, Inc.
8 
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2, or (at your option)
12    any later version.
13 
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18 
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22    */
23 
24 #ifndef FOOTNOTE_H
25 #define FOOTNOTE_H
26 
27 extern int footnote_style_preset;
28 extern int current_footnote_number;
29 extern int number_footnotes;
30 extern int already_outputting_pending_notes;
31 
32 /* The Texinfo @commands.  */
33 extern void cm_footnote (void);
34 extern void cm_footnotestyle (void);
35 
36 extern int set_footnote_style (char *string);    /* called for -s option */
37 
38 extern void output_pending_notes (void); /* called for output */
39 
40 #endif /* !FOOTNOTE_H */
41