]> andersk Git - splint.git/blame - src/Headers/cpperror.h
Added va_copy to standard.h.
[splint.git] / src / Headers / cpperror.h
CommitLineData
885824d3 1# ifndef CPPERROR_H
2# define CPPERROR_H
3
4/* doesn't exit! */
5extern void cppReader_fatalError (cppReader *p_pfile, /*@only@*/ cstring p_str);
6
27c9e640 7extern /*@noreturn@*/ void cppReader_pfatalWithName (cppReader *p_pfile,
885824d3 8 cstring p_name);
9
10extern void cppReader_errorLit (cppReader *p_pfile, /*@observer@*/ cstring p_msg);
11
12extern void
13cppReader_pedwarnWithLine (cppReader *p_pfile, int p_line, int p_column,
14 /*@only@*/ cstring p_msg);
15
16extern void cppReader_error (cppReader *p_pfile, /*@only@*/ cstring p_msg);
17extern void cppReader_warning (cppReader *p_pfile, /*@only@*/ cstring p_msg);
18
80489f0a 19extern void cppReader_printContainingFiles (cppReader *p_pfile) /*@modifies g_warningstream, p_pfile@*/ ;
885824d3 20extern void cppReader_warningLit (cppReader *p_pfile, /*@observer@*/ cstring p_msg);
21
22extern void cppReader_pedwarn (cppReader *p_pfile, /*@only@*/ cstring p_msg);
23
24extern void cppReader_pedwarnLit (cppReader *p_pfile, /*@observer@*/ cstring p_msg);
25
26extern void cppReader_errorWithLine (cppReader *p_pfile,
80489f0a 27 int p_line, int p_column,
885824d3 28 /*@only@*/ cstring p_msg);
29
30extern void cppReader_perrorWithName (cppReader *p_pfile, cstring p_name);
31
32# else
33# error "Multiple include"
34# endif
35
36
This page took 0.628208 seconds and 5 git commands to generate.