From: Tobias Brunner Date: Tue, 26 Mar 2013 11:36:51 +0000 (+0100) Subject: Some minor Doxygen fixes for linked_list_t X-Git-Tag: 5.1.0dr1~129^2~43 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d3b06618f8be6c7468799b737ccf40a447e104f0;p=thirdparty%2Fstrongswan.git Some minor Doxygen fixes for linked_list_t --- diff --git a/src/libstrongswan/collections/linked_list.h b/src/libstrongswan/collections/linked_list.h index da539a231b..81eca89456 100644 --- a/src/libstrongswan/collections/linked_list.h +++ b/src/libstrongswan/collections/linked_list.h @@ -82,6 +82,7 @@ struct linked_list_t { * current position. * * @param enumerator enumerator to check + * @return TRUE if more elements follow after the current item */ bool (*has_more)(linked_list_t *this, enumerator_t *enumerator); @@ -180,7 +181,8 @@ struct linked_list_t { */ status_t (*get_last) (linked_list_t *this, void **item); - /** Find the first matching element in the list. + /** + * Find the first matching element in the list. * * The first object passed to the match function is the current list item, * followed by the user supplied data. @@ -200,7 +202,8 @@ struct linked_list_t { status_t (*find_first) (linked_list_t *this, linked_list_match_t match, void **item, ...); - /** Find the last matching element in the list. + /** + * Find the last matching element in the list. * * The first object passed to the match function is the current list item, * followed by the user supplied data.