| 93 | /* ── Helper: check whether a file exists ────────────────────────────── */ |
| 94 | |
| 95 | static int file_exists(const char *path) { |
| 96 | struct stat st; |
| 97 | return (stat(path, &st) == 0) ? 1 : 0; |
| 98 | } |
| 99 | |
| 100 | /* Unique quarantine generations use: |
| 101 | * |
no test coverage detected