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