| 100 | } |
| 101 | |
| 102 | static bool agent_path_exists(const cbm_agent_client_resolve_options_t *options, const char *path) { |
| 103 | return options->path_exists ? options->path_exists(path, options->probe_context) |
| 104 | : cbm_file_exists(path); |
| 105 | } |
| 106 | |
| 107 | static bool agent_command_exists(const cbm_agent_client_resolve_options_t *options, |
| 108 | const char *command) { |
no test coverage detected