aboutsummaryrefslogtreecommitdiffstats
path: root/xmlmemory.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-12-11 14:23:49 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-12-11 14:23:49 +0000
commita9b66d00b5fbae2381f59c0be4d8c7b8e3c16cf7 (patch)
tree6b2020f80592d1021caaedc83c37809100855226 /xmlmemory.c
parent01c13b5be2d249ef66d86585adee87901bb8efa2 (diff)
downloadandroid_external_libxml2-a9b66d00b5fbae2381f59c0be4d8c7b8e3c16cf7.tar.gz
android_external_libxml2-a9b66d00b5fbae2381f59c0be4d8c7b8e3c16cf7.tar.bz2
android_external_libxml2-a9b66d00b5fbae2381f59c0be4d8c7b8e3c16cf7.zip
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
Diffstat (limited to 'xmlmemory.c')
-rw-r--r--xmlmemory.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmlmemory.c b/xmlmemory.c
index ba3965cf..55276686 100644
--- a/xmlmemory.c
+++ b/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
*/