| 2602 | } |
| 2603 | |
| 2604 | static struct todo_item *append_new_todo(struct todo_list *todo_list) |
| 2605 | { |
| 2606 | ALLOC_GROW(todo_list->items, todo_list->nr + 1, todo_list->alloc); |
| 2607 | return todo_list->items + todo_list->nr++; |
| 2608 | } |
| 2609 | |
| 2610 | const char *todo_item_get_arg(struct todo_list *todo_list, |
| 2611 | struct todo_item *item) |
no outgoing calls
no test coverage detected