1 /* This file is part of the program psim.
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 of the License, or
8 (at your option) any later version.
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.
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
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 /* LF: Line Numbered Output Stream */
24 typedef struct _lf lf;
34 lf_include_references,
39 /* Open the file NAME for writing ("-" for stdout). Use REAL_NAME
40 when refering to the opened file. Line number information (in the
41 output) can be suppressed with FILE_REFERENCES ==
42 LF_OMIT_REFERENCES. TYPE is to determine the formatting of some of
43 the print messages below. */
48 lf_file_references file_references,
56 /* Basic output functions */
83 ...) __attribute__((format(printf, 2, 3)));
86 /* Indentation control.
88 lf_indent_suppress suppresses indentation on the next line (current
89 line if that has not yet been started) */
91 extern void lf_indent_suppress
99 /* Print generic text: */
102 extern int lf_print__gnu_copyleft
105 extern int lf_print__file_start
108 extern int lf_print__this_file_is_empty
112 extern int lf_print__file_finish
115 extern int lf_print__internal_ref
118 extern int lf_print__external_ref
121 const char *file_name);
123 extern int lf_print__line_ref
127 extern int lf_print__ucase_filename
130 extern int lf_print__function_type
134 const char *trailing_space);
136 typedef int print_function(lf *file);
138 extern int lf_print__function_type_function
140 print_function *print_type,
142 const char *trailing_space);