aboutsummaryrefslogtreecommitdiffstats
path: root/list.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-07-18 19:30:27 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-07-18 19:30:27 +0000
commit5e2dace1ca6fbb023d1ce848d4e98deefbbfec31 (patch)
tree11c326472dc001b64ae56f165323934d72a95336 /list.c
parent8599e70dd39c4cdc3da79fdc07859c911381b00b (diff)
downloadandroid_external_libxml2-5e2dace1ca6fbb023d1ce848d4e98deefbbfec31.tar.gz
android_external_libxml2-5e2dace1ca6fbb023d1ce848d4e98deefbbfec31.tar.bz2
android_external_libxml2-5e2dace1ca6fbb023d1ce848d4e98deefbbfec31.zip
Cleanup, cleanup .. removed libxml softlink for good cleanup to get 100%
Cleanup, cleanup .. * configure.in Makefile.am: removed libxml softlink for good * include/libxml/*.h *.c doc/Makefile.am: cleanup to get 100% coverage by gtk-doc Daniel
Diffstat (limited to 'list.c')
-rw-r--r--list.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/list.c b/list.c
index 0e05789c..b0acf7d8 100644
--- a/list.c
+++ b/list.c
@@ -226,7 +226,7 @@ xmlListSearch(xmlListPtr l, void *data)
}
/**
- * xmlListLinkReverseSearch:
+ * xmlListReverseSearch:
* @l: a list
* @data: a search value
*
@@ -404,6 +404,8 @@ xmlListClear(xmlListPtr l)
* xmlListEmpty:
* @l: a list
*
+ * Is the list empty ?
+ *
* Returns 1 if the list is empty, 0 otherwise
*/
int
@@ -416,6 +418,8 @@ xmlListEmpty(xmlListPtr l)
* xmlListFront:
* @l: a list
*
+ * Get the first element in the list
+ *
* Returns the first element in the list, or NULL
*/
xmlLinkPtr
@@ -425,9 +429,11 @@ xmlListFront(xmlListPtr l)
}
/**
- * xmlListFront:
+ * xmlListEnd:
* @l: a list
*
+ * Get the last element in the list
+ *
* Returns the last element in the list, or NULL
*/
xmlLinkPtr
@@ -440,6 +446,8 @@ xmlListEnd(xmlListPtr l)
* xmlListSize:
* @l: a list
*
+ * Get the number of elements in the list
+ *
* Returns the number of elements in the list
*/
int
@@ -603,6 +611,7 @@ xmlListSort(xmlListPtr l)
* xmlListWalk:
* @l: a list
* @walker: a processing function
+ * @user: a user parameter passed to the walker function
*
* Walk all the element of the first from first to last and
* apply the walker function to it
@@ -621,6 +630,7 @@ xmlListWalk(xmlListPtr l, xmlListWalker walker, const void *user) {
* xmlListReverseWalk:
* @l: a list
* @walker: a processing function
+ * @user: a user parameter passed to the walker function
*
* Walk all the element of the list in reverse order and
* apply the walker function to it