| 830 | } |
| 831 | |
| 832 | static int is_deprecated_command(const char *cmd) |
| 833 | { |
| 834 | struct cmd_struct *builtin = get_builtin(cmd); |
| 835 | return builtin && (builtin->option & DEPRECATED); |
| 836 | } |
| 837 | |
| 838 | static int run_argv(struct strvec *args) |
| 839 | { |
no test coverage detected