mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-10-20 03:52:25 +03:00
Release 1.6, lot of fixes, more validation, code cleanup, added namespace
on attributes, Daniel.
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include "tree.h"
|
||||
#include "parser.h"
|
||||
#include "encoding.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
@@ -35,17 +36,21 @@ typedef xmlParserInputBuffer *xmlParserInputBufferPtr;
|
||||
* 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
|
||||
}
|
||||
|
Reference in New Issue
Block a user