footnote.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /* footnote.h -- declarations for footnote.c.
  2. $Id: footnote.h,v 1.5 2007-07-01 21:20:32 karl Exp $
  3. Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2007 Free Software
  4. Foundation, Inc.
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  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. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  15. #ifndef FOOTNOTE_H
  16. #define FOOTNOTE_H
  17. extern int footnote_style_preset;
  18. extern int current_footnote_number;
  19. extern int number_footnotes;
  20. extern int already_outputting_pending_notes;
  21. /* The Texinfo @commands. */
  22. extern void cm_footnote (void);
  23. extern void cm_footnotestyle (void);
  24. extern int set_footnote_style (char *string); /* called for -s option */
  25. extern void output_pending_notes (void); /* called for output */
  26. #endif /* !FOOTNOTE_H */