1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

- parser.c parser.h parserInternals.h: fixed a couple of

interfaces for handling memory buffer input to const char *
  upon suggestion of JamesH.
Daniel
This commit is contained in:
Daniel Veillard
2001-05-16 10:57:35 +00:00
parent c3739e7233
commit fd7ddca8b2
6 changed files with 12 additions and 6 deletions

View File

@@ -137,7 +137,7 @@ int xmlIsChar (int c);
*/
xmlParserCtxtPtr xmlCreateDocParserCtxt (xmlChar *cur);
xmlParserCtxtPtr xmlCreateFileParserCtxt (const char *filename);
xmlParserCtxtPtr xmlCreateMemoryParserCtxt(char *buffer,
xmlParserCtxtPtr xmlCreateMemoryParserCtxt(const char *buffer,
int size);
xmlParserCtxtPtr xmlNewParserCtxt (void);
xmlParserCtxtPtr xmlCreateEntityParserCtxt(const xmlChar *URL,