| 48 | /* ── Minimal local helpers (mirror test_cli.c pattern) ──────────────────── */ |
| 49 | |
| 50 | static int repro221_write_file(const char *path, const char *content) { |
| 51 | FILE *f = fopen(path, "w"); |
| 52 | if (!f) |
| 53 | return -1; |
| 54 | fprintf(f, "%s", content); |
| 55 | fclose(f); |
| 56 | return 0; |
| 57 | } |
| 58 | |
| 59 | /* ── Test ───────────────────────────────────────────────────────────────── */ |
| 60 |