| 2895 | } |
| 2896 | |
| 2897 | static int count_commands(struct todo_list *todo_list) |
| 2898 | { |
| 2899 | int count = 0, i; |
| 2900 | |
| 2901 | for (i = 0; i < todo_list->nr; i++) |
| 2902 | if (todo_list->items[i].command != TODO_COMMENT) |
| 2903 | count++; |
| 2904 | |
| 2905 | return count; |
| 2906 | } |
| 2907 | |
| 2908 | static int get_item_line_offset(struct todo_list *todo_list, int index) |
| 2909 | { |
no outgoing calls
no test coverage detected