1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/* ------------------------------------------------------------------------
@NAME : error.c
@DESCRIPTION: Prototypes for the error-generating functions (i.e. functions
defined in error.c, and meant only for use elswhere in the
library).
@CREATED : Summer 1996, Greg Ward
@MODIFIED :
@VERSION : $Id: error.h,v 1.11 1999/11/29 01:13:10 greg Rel $
@COPYRIGHT : Copyright (c) 1996-99 by Gregory P. Ward. All rights reserved.
This file is part of the btparse library. This library is
free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
-------------------------------------------------------------------------- */
#ifndef ERROR_H
#define ERROR_H
#include <stdarg.h>
#include "btparse.h" /* for AST typedef */
#define MAX_ERROR 1024
#define ERRFUNC_BODY(class,filename,line,item_desc,item,format) \
{ \
va_list arglist; \
\
va_start (arglist, format); \
report_error (class, filename, line, item_desc, item, format, arglist); \
va_end (arglist); \
}
#define GEN_ERRFUNC(name,params,class,filename,line,item_desc,item,format) \
void name params \
ERRFUNC_BODY (class, filename, line, item_desc, item, format)
#define GEN_PRIVATE_ERRFUNC(name,params, \
class,filename,line,item_desc,item,format) \
static GEN_ERRFUNC(name,params,class,filename,line,item_desc,item,format)
/*
* Prototypes for functions exported by error.c but only used within
* the library -- functions that can be called by outsiders are declared
* in btparse.h.
*/
void print_error (bt_error *err);
void report_error (bt_errclass class,
char * filename, int line, const char * item_desc, int item,
const char * format, va_list arglist);
void general_error (bt_errclass class,
char * filename, int line, const char * item_desc, int item,
char * format, ...);
void error (bt_errclass class, char * filename, int line, char * format, ...);
void ast_error (bt_errclass class, AST * ast, char * format, ...);
void notify (const char *format,...);
void usage_warning (const char * format, ...);
void usage_error (const char * format, ...);
void internal_error (const char * format, ...);
#endif
|