]>
git.saurik.com Git - bison.git/blob - src/complain.h
3d867f5ea62618b87f7ad90c94fabf522f16dc32
1 /* Declaration for error-reporting function for Bison.
3 Copyright (C) 2000-2002, 2006, 2009-2011 Free Software Foundation,
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 # define COMPLAIN_H_ 1
22 # include "location.h"
28 /** Informative messages, but we proceed. Report iff
29 <tt>warnings_flag & warnings_other</tt>. */
31 void warn (char const *format
, ...)
32 __attribute__ ((__format__ (__printf__
, 1, 2)));
34 void warn_at (location loc
, char const *format
, ...)
35 __attribute__ ((__format__ (__printf__
, 2, 3)));
37 /* Generate a message aligned by an indent.
38 When *indent == 0, assign message's indent to *indent,
39 When *indent > 0, align the message by *indent value. */
40 void warn_at_indent (location loc
, unsigned *indent
,
41 char const *format
, ...)
42 __attribute__ ((__format__ (__printf__
, 3, 4)));
44 /** An error, but we continue and die later. */
46 void complain (char const *format
, ...)
47 __attribute__ ((__format__ (__printf__
, 1, 2)));
49 void complain_at (location loc
, char const *format
, ...)
50 __attribute__ ((__format__ (__printf__
, 2, 3)));
52 /* Generate a message aligned by an indent.
53 When *indent == 0, assign message's indent to *indent,
54 When *indent > 0, align the message by *indent value. */
55 void complain_at_indent (location loc
, unsigned *indent
,
56 char const *format
, ...)
57 __attribute__ ((__format__ (__printf__
, 3, 4)));
59 /** An incompatibility with POSIX Yacc: mapped either to warn* or
60 complain* depending on yacc_flag. */
62 void yacc_at (location loc
, char const *format
, ...)
63 __attribute__ ((__format__ (__printf__
, 2, 3)));
65 /** A midrule-value warning. Report iff
66 <tt>warnings_flag & warnings_midrule_values</tt>. */
68 void midrule_value_at (location loc
, char const *format
, ...)
69 __attribute__ ((__format__ (__printf__
, 2, 3)));
71 /** A fatal error, causing immediate exit. */
73 void fatal (char const *format
, ...)
74 __attribute__ ((__noreturn__
, __format__ (__printf__
, 1, 2)));
76 void fatal_at (location loc
, char const *format
, ...)
77 __attribute__ ((__noreturn__
, __format__ (__printf__
, 2, 3)));
79 /** Whether an error was reported. */
80 extern bool complaint_issued
;
86 #endif /* !COMPLAIN_H_ */