156160Sru/* footnote.h -- declarations for footnote.c.
2146515Sru   $Id: footnote.h,v 1.2 2004/04/11 17:56:47 karl Exp $
356160Sru
4146515Sru   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
5146515Sru   Foundation, Inc.
656160Sru
756160Sru   This program is free software; you can redistribute it and/or modify
856160Sru   it under the terms of the GNU General Public License as published by
956160Sru   the Free Software Foundation; either version 2, or (at your option)
1056160Sru   any later version.
1156160Sru
1256160Sru   This program is distributed in the hope that it will be useful,
1356160Sru   but WITHOUT ANY WARRANTY; without even the implied warranty of
1456160Sru   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1556160Sru   GNU General Public License for more details.
1656160Sru
1756160Sru   You should have received a copy of the GNU General Public License
1856160Sru   along with this program; if not, write to the Free Software
1956160Sru   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2056160Sru   */
2156160Sru
2256160Sru#ifndef FOOTNOTE_H
2356160Sru#define FOOTNOTE_H
2456160Sru
2556160Sruextern int footnote_style_preset;
2656160Sruextern int current_footnote_number;
2756160Sruextern int number_footnotes;
2856160Sruextern int already_outputting_pending_notes;
2956160Sru
3056160Sru/* The Texinfo @commands.  */
31146515Sruextern void cm_footnote (void);
32146515Sruextern void cm_footnotestyle (void);
3356160Sru
34146515Sruextern int set_footnote_style (char *string);    /* called for -s option */
3556160Sru
36146515Sruextern void output_pending_notes (void); /* called for output */
3756160Sru
3856160Sru#endif /* !FOOTNOTE_H */
39