blob: 8697d52e292b7228312ce8b8d5f7b77114e2288d [file] [log] [blame]
Raja R Harinathd2e3abd1998-08-20 21:52:38 +00001#ifndef error_h_
2#define error_h_
3
4#include "parser.h"
5
Daniel Veillardb96e6431999-08-29 21:02:19 +00006void xmlParserError (void *ctx,
7 const char *msg,
8 ...);
9void xmlParserWarning (void *ctx,
10 const char *msg,
11 ...);
12void xmlParserValidityError (void *ctx,
13 const char *msg,
14 ...);
15void xmlParserValidityWarning(void *ctx,
16 const char *msg,
17 ...);
18void xmlParserPrintFileInfo (xmlParserInputPtr input);
19void xmlParserPrintFileContext(xmlParserInputPtr input);
Raja R Harinathd2e3abd1998-08-20 21:52:38 +000020#endif