| 92 | /* ── Helper: check whether a file exists ────────────────────────────── */ |
| 93 | |
| 94 | static int file_exists(const char *path) { |
| 95 | struct stat st; |
| 96 | return (stat(path, &st) == 0) ? 1 : 0; |
| 97 | } |
| 98 | |
| 99 | /* ── Test ───────────────────────────────────────────────────────────── |
| 100 | * |