| 1839 | }; |
| 1840 | |
| 1841 | static const char *command_to_string(const enum todo_command command) |
| 1842 | { |
| 1843 | if (command < TODO_COMMENT) |
| 1844 | return todo_command_info[command].str; |
| 1845 | if (command == TODO_COMMENT) |
| 1846 | return comment_line_str; |
| 1847 | die(_("unknown command: %d"), command); |
| 1848 | } |
| 1849 | |
| 1850 | static char command_to_char(const enum todo_command command) |
| 1851 | { |
no test coverage detected