| 775 | } |
| 776 | |
| 777 | static bool ha_path_contains(const char *root, const char *candidate) { |
| 778 | #ifdef _WIN32 |
| 779 | return ha_path_contains_mode(root, candidate, true); |
| 780 | #else |
| 781 | return ha_path_contains_mode(root, candidate, false); |
| 782 | #endif |
| 783 | } |
| 784 | |
| 785 | static char *ha_registry_project_for_path(cbm_mcp_server_t *srv, const char *cwd, char *root_out, |
| 786 | size_t root_out_size) { |
no test coverage detected