1 /* title.h -- declaration for verbosity sensitive feedback function
2    Copyright (c) 1988, 89, 90, 91, 92, 93 Miguel Santana
3    Copyright (c) 1995, 96, 97, 98 Akim Demaille, Miguel Santana
4 
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 2, or (at your option)
8    any later version.
9 
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14 
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software Foundation,
17    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
18 
19 /*
20  * Note:
21  * very strong inspiration was taken in error.[ch] by
22  * David MacKenzie <djm@gnu.ai.mit.edu>
23  */
24 
25 #ifndef _TITLE_H_
26 #define _TITLE_H_
27 
28 # if defined (__STDC__) && __STDC__
29 
30 /* Print the title TITLE, which is a printf-style
31    format string with optional args if msg_level is bigger than
32    title_verbosity.*/
33 
34 extern void title (FILE * stream, char c, int center_p,
35 		   const char *format, ...)
36      __attribute__ ((__format__ (__printf__, 4, 5)));
37 
38 # else
39 void title ();
40 # endif
41 
42 #endif /* not TITLE_H_ */
43