]> git.saurik.com Git - bison.git/blame - src/complain.h
* src/reduce.c (reduce_grammar): When the language is empty,
[bison.git] / src / complain.h
CommitLineData
a0f6b076 1/* Declaration for error-reporting function for Bison.
ee000ba4 2 Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
a0f6b076
AD
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_
ee000ba4 20# define COMPLAIN_H_ 1
a0f6b076 21
ee000ba4
AD
22# include "location.h"
23
24# ifdef __cplusplus
a0f6b076 25extern "C" {
ee000ba4 26# endif
a0f6b076 27
ee000ba4 28# ifdef __STDC__
a0f6b076
AD
29
30/* Informative messages, but we proceed. */
31
ee000ba4 32void warn_at (location_t location, const char *format, ...)
e9955c83 33 __attribute__ ((__format__ (__printf__, 2, 3)));
a0f6b076
AD
34
35/* Something bad happen, but let's continue and die later. */
36
ee000ba4 37void complain_at (location_t location, const char *format, ...)
e9955c83 38 __attribute__ ((__format__ (__printf__, 2, 3)));
a0f6b076
AD
39
40/* Something bad happen and we die now. */
41
e9955c83
AD
42void fatal (const char *format, ...)
43 __attribute__ ((__format__ (__printf__, 1, 2)));
44
ee000ba4 45void fatal_at (location_t location, const char *format, ...)
e9955c83 46 __attribute__ ((__format__ (__printf__, 2, 3)));
a0f6b076 47
ee000ba4 48# else
e9955c83 49void warn_at ();
e9955c83 50void complain_at ();
0e41b407 51void fatal ();
e9955c83 52void fatal_at ();
ee000ba4 53# endif
a0f6b076
AD
54
55/* Position in the current input file. */
56extern char *infile;
a0f6b076
AD
57
58/* This variable is incremented each time `warn' is called. */
59extern unsigned int warn_message_count;
60
61/* This variable is incremented each time `complain' is called. */
62extern unsigned int complain_message_count;
63
ee000ba4 64# ifdef __cplusplus
a0f6b076 65}
ee000ba4 66# endif
a0f6b076
AD
67
68#endif /* !COMPLAIN_H_ */