diff options
Diffstat (limited to 'lib/llist.c')
-rw-r--r-- | lib/llist.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/llist.c b/lib/llist.c index 42364b121..9478a708d 100644 --- a/lib/llist.c +++ b/lib/llist.c @@ -62,6 +62,8 @@ Curl_llist_alloc(curl_llist_dtor dtor) * inserted first in the list. * * Returns: 1 on success and 0 on failure. + * + * @unittest: 1300 */ int Curl_llist_insert_next(struct curl_llist *list, struct curl_llist_element *e, @@ -101,9 +103,11 @@ Curl_llist_insert_next(struct curl_llist *list, struct curl_llist_element *e, return 1; } -int -Curl_llist_remove(struct curl_llist *list, struct curl_llist_element *e, - void *user) +/* + * @unittest: 1300 + */ +int Curl_llist_remove(struct curl_llist *list, struct curl_llist_element *e, + void *user) { if(e == NULL || list->size == 0) return 1; |