- linked_list, event_queue, send_queue and job_queue returns now

count directly
This commit is contained in:
Jan Hutter
2005-11-10 08:44:17 +00:00
parent ed7634e696
commit 1061c878a9
16 changed files with 95 additions and 132 deletions
+2 -3
View File
@@ -92,10 +92,9 @@ struct linked_list_s {
* @brief gets the count of items in the list
*
* @param linked_list calling object
* @param[in] count place where the count is written
* @return SUCCESS if succeeded, FAILED otherwise
* @return number of items in list
*/
status_t (*get_count) (linked_list_t *linked_list, int *count);
int (*get_count) (linked_list_t *linked_list);
/**
* @brief creates a iterator for the given list