Release 1.6, lot of fixes, more validation, code cleanup, added namespace
on attributes, Daniel.
diff --git a/include/libxml/xmlIO.h b/include/libxml/xmlIO.h
index 0e086d7..01bf14c 100644
--- a/include/libxml/xmlIO.h
+++ b/include/libxml/xmlIO.h
@@ -11,6 +11,7 @@
 
 #include <stdio.h>
 #include "tree.h"
+#include "parser.h"
 #include "encoding.h"
 
 #ifdef __cplusplus
@@ -35,17 +36,21 @@
  * Interfaces
  */
 
-xmlParserInputBufferPtr xmlParserInputBufferCreateFilename(const char *filename,
-                                                       xmlCharEncoding enc);
-xmlParserInputBufferPtr xmlParserInputBufferCreateFile(FILE *file,
-                                                       xmlCharEncoding enc);
-xmlParserInputBufferPtr xmlParserInputBufferCreateFd(int fd, xmlCharEncoding enc);
-
-int xmlParserInputBufferRead(xmlParserInputBufferPtr in, int len);
-int xmlParserInputBufferGrow(xmlParserInputBufferPtr in, int len);
-
-void xmlFreeParserInputBuffer(xmlParserInputBufferPtr in);
-char *xmlParserGetDirectory(const char *filename);
+xmlParserInputBufferPtr
+	xmlParserInputBufferCreateFilename	(const char *filename,
+                                                 xmlCharEncoding enc);
+xmlParserInputBufferPtr
+	xmlParserInputBufferCreateFile		(FILE *file,
+                                                 xmlCharEncoding enc);
+xmlParserInputBufferPtr
+	xmlParserInputBufferCreateFd		(int fd,
+	                                         xmlCharEncoding enc);
+int	xmlParserInputBufferRead		(xmlParserInputBufferPtr in,
+						 int len);
+int	xmlParserInputBufferGrow		(xmlParserInputBufferPtr in,
+						 int len);
+void	xmlFreeParserInputBuffer		(xmlParserInputBufferPtr in);
+char *	xmlParserGetDirectory			(const char *filename);
 
 #ifdef __cplusplus
 }