Release 1.6, lot of fixes, more validation, code cleanup, added namespace
on attributes, Daniel.
diff --git a/xml-error.h b/xml-error.h
index 9308af2..8697d52 100644
--- a/xml-error.h
+++ b/xml-error.h
@@ -3,6 +3,18 @@
 
 #include "parser.h"
 
-void xmlParserError(void *ctx, const char *msg, ...);
-void xmlParserWarning(void *ctx, const char *msg, ...);
+void	xmlParserError		(void *ctx,
+				 const char *msg,
+				 ...);
+void	xmlParserWarning	(void *ctx,
+				 const char *msg,
+				 ...);
+void	xmlParserValidityError	(void *ctx,
+				 const char *msg,
+				 ...);
+void	xmlParserValidityWarning(void *ctx,
+				 const char *msg,
+				 ...);
+void	xmlParserPrintFileInfo	(xmlParserInputPtr input);
+void	xmlParserPrintFileContext(xmlParserInputPtr input);
 #endif