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