1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-20 03:52:25 +03:00

- parser.c xmlIO.[ch]: fixed the problem of encoding support

when using in memory parsing. Need some cleanup.
- xmllint.c configure.in: added a --memory flag to test memory
  parsing
Daniel
This commit is contained in:
Daniel Veillard
2000-07-21 20:32:03 +00:00
parent 3665069745
commit 46e370e69f
8 changed files with 91 additions and 11 deletions

View File

@@ -83,6 +83,9 @@ xmlParserInputBufferPtr
xmlParserInputBufferPtr
xmlParserInputBufferCreateFd (int fd,
xmlCharEncoding enc);
xmlParserInputBufferPtr
xmlParserInputBufferCreateMem (const char *mem, int size,
xmlCharEncoding enc);
xmlParserInputBufferPtr
xmlParserInputBufferCreateIO (xmlInputReadCallback ioread,
xmlInputCloseCallback ioclose,