| 2917 | } |
| 2918 | |
| 2919 | static int get_item_line_length(struct todo_list *todo_list, int index) |
| 2920 | { |
| 2921 | return get_item_line_offset(todo_list, index + 1) |
| 2922 | - get_item_line_offset(todo_list, index); |
| 2923 | } |
| 2924 | |
| 2925 | static ssize_t strbuf_read_file_or_whine(struct strbuf *sb, const char *path) |
| 2926 | { |
no test coverage detected