| 38 | } |
| 39 | |
| 40 | static bool discover_has_rel_path(const cbm_file_info_t *files, int count, const char *rel_path) { |
| 41 | for (int i = 0; i < count; i++) { |
| 42 | if (strcmp(files[i].rel_path, rel_path) == 0) { |
| 43 | return true; |
| 44 | } |
| 45 | } |
| 46 | return false; |
| 47 | } |
| 48 | |
| 49 | /* ── Directory skip (always skipped) ───────────────────────────── */ |
| 50 |