htmlhint.h revision 151497
1110566Smike// -*- C++ -*-
2110566Smike/* Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
3141379Sdas     Written by Gaius Mulley <gaius@glam.ac.uk>
4110566Smike
5110566SmikeThis file is part of groff.
6110566Smike
7110566Smikegroff is free software; you can redistribute it and/or modify it under
8110566Smikethe terms of the GNU General Public License as published by the Free
9110566SmikeSoftware Foundation; either version 2, or (at your option) any later
10110566Smikeversion.
11110566Smike
12110566Smikegroff is distributed in the hope that it will be useful, but WITHOUT ANY
13110566SmikeWARRANTY; without even the implied warranty of MERCHANTABILITY or
14110566SmikeFITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15110566Smikefor more details.
16110566Smike
17110566SmikeYou should have received a copy of the GNU General Public License along
18110566Smikewith groff; see the file COPYING.  If not, write to the Free Software
19110566SmikeFoundation, 51 Franklin St - Fifth Floor, Boston, MA 02110-1301, USA. */
20110566Smike
21110566Smike#ifndef HTMLINDICATE_H
22110566Smike#define HTMLINDICATE_H
23110566Smike
24110566Smike/*
25110566Smike *  html_begin_suppress - suppresses output for the html device
26110566Smike *                        and resets the min/max registers for -Tps.
27110566Smike *                        Only called for inline images (such as eqn).
28110566Smike *
29110566Smike */
30110566Smikeextern void html_begin_suppress();
31110566Smike
32110566Smike/*
33186461Smarcel *  html_end_suppress - end the suppression of output.
34186461Smarcel */
35186461Smarcelextern void html_end_suppress();
36186461Smarcel
37110566Smike#endif
38110566Smike