mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-10-21 14:53:44 +03:00
Added call to create/free parser contexts, + doc, Daniel.
This commit is contained in:
@@ -15,6 +15,18 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Parser context
|
||||
*/
|
||||
xmlParserCtxtPtr
|
||||
xmlCreateDocParserCtxt(CHAR *cur);
|
||||
xmlParserCtxtPtr
|
||||
xmlCreateFileParserCtxt(const char *filename);
|
||||
xmlParserCtxtPtr
|
||||
xmlCreateMemoryParserCtxt(char *buffer, int size);
|
||||
void
|
||||
xmlFreeParserCtxt(xmlParserCtxtPtr ctxt);
|
||||
|
||||
/*
|
||||
* Entities
|
||||
*/
|
||||
|
Reference in New Issue
Block a user