diff options
-rw-r--r-- | src/libstrongswan/collections/linked_list.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/libstrongswan/collections/linked_list.h b/src/libstrongswan/collections/linked_list.h index da539a231..81eca8945 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. |