| 1278 | } |
| 1279 | |
| 1280 | static bool main_local_cli_feedback_enabled(int argc, char **argv) { |
| 1281 | bool requested = false; |
| 1282 | for (int index = 1; index < argc; index++) { |
| 1283 | if (argv[index] && strcmp(argv[index], "--progress") == 0) { |
| 1284 | requested = true; |
| 1285 | break; |
| 1286 | } |
| 1287 | } |
| 1288 | return cbm_cli_progress_enabled(requested, cli_isatty(2) != 0); |
| 1289 | } |
| 1290 | |
| 1291 | static int main_local_transition_acquire(const cbm_daemon_ipc_endpoint_t *endpoint, FILE *feedback, |
| 1292 | cbm_daemon_ipc_local_transition_t **transition_out) { |
no test coverage detected