]> git.saurik.com Git - bison.git/blame_incremental - src/complain.h
* src/tables.h, src/tables.c, src/output.c: Comment changes.
[bison.git] / src / complain.h
... / ...
CommitLineData
1/* Declaration for error-reporting function for Bison.
2 Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
3
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the
6 Free Software Foundation; either version 2, or (at your option) any
7 later version.
8
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
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17 USA. */
18
19#ifndef COMPLAIN_H_
20# define COMPLAIN_H_ 1
21
22# include "location.h"
23
24# ifdef __cplusplus
25extern "C" {
26# endif
27
28# ifdef __STDC__
29
30/* Informative messages, but we proceed. */
31
32void warn (const char *format, ...)
33 __attribute__ ((__format__ (__printf__, 1, 2)));
34
35void warn_at (location_t location, const char *format, ...)
36 __attribute__ ((__format__ (__printf__, 2, 3)));
37
38/* Something bad happen, but let's continue and die later. */
39
40void complain (const char *format, ...)
41 __attribute__ ((__format__ (__printf__, 1, 2)));
42
43void complain_at (location_t location, const char *format, ...)
44 __attribute__ ((__format__ (__printf__, 2, 3)));
45
46/* Something bad happen and we die now. */
47
48void fatal (const char *format, ...)
49 __attribute__ ((__format__ (__printf__, 1, 2)));
50
51void fatal_at (location_t location, const char *format, ...)
52 __attribute__ ((__format__ (__printf__, 2, 3)));
53
54# else
55void warn ();
56void warn_at ();
57void complain ();
58void complain_at ();
59void fatal ();
60void fatal_at ();
61# endif
62
63/* Position in the current input file. */
64extern char *infile;
65
66/* This variable is incremented each time `warn' is called. */
67extern unsigned int warn_message_count;
68
69/* This variable is incremented each time `complain' is called. */
70extern unsigned int complain_message_count;
71
72# ifdef __cplusplus
73}
74# endif
75
76#endif /* !COMPLAIN_H_ */