mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
new API building Python script, does the C parsing directly, generates a
* doc/apibuild.py doc/libxml2-api.xml doc/Makefile.am: new API building Python script, does the C parsing directly, generates a better API description including structure fieds defs and enums. Still a couple of bugs, but good enough for the python wrappers now. * DOCBparser.c SAX.c nanohttp.c parser.c parserInternals.c tree.c valid.c xmlIO.c xmlmemory.c xmlreader.c xmlregexp.c xmlschemas.c include/libxml/schemasInternals.h include/libxml/tree.h: more cleanup based on the python analysis script reports. * libxml.spec.in: make sure the API XML description is part of the devel package. Daniel
This commit is contained in:
12
xmlmemory.c
12
xmlmemory.c
@ -427,7 +427,7 @@ xmlMemoryStrdup(const char *str) {
|
||||
/**
|
||||
* xmlMemUsed:
|
||||
*
|
||||
* returns the amount of memory currently allocated
|
||||
* Provides the amount of memory currently allocated
|
||||
*
|
||||
* Returns an int representing the amount of memory allocated.
|
||||
*/
|
||||
@ -754,12 +754,12 @@ xmlMemSetup(xmlFreeFunc freeFunc, xmlMallocFunc mallocFunc,
|
||||
|
||||
/**
|
||||
* xmlMemGet:
|
||||
* @freeFunc: the free() function in use
|
||||
* @mallocFunc: the malloc() function in use
|
||||
* @reallocFunc: the realloc() function in use
|
||||
* @strdupFunc: the strdup() function in use
|
||||
* @freeFunc: place to save the free() function in use
|
||||
* @mallocFunc: place to save the malloc() function in use
|
||||
* @reallocFunc: place to save the realloc() function in use
|
||||
* @strdupFunc: place to save the strdup() function in use
|
||||
*
|
||||
* Return the memory access functions set currently in use
|
||||
* Provides the memory access functions set currently in use
|
||||
*
|
||||
* Returns 0 on success
|
||||
*/
|
||||
|
Reference in New Issue
Block a user