MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / repro221_write_file

Function repro221_write_file

tests/repro/repro_issue221.c:50–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48/* ── Minimal local helpers (mirror test_cli.c pattern) ──────────────────── */
49
50static 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

Callers 1

repro_issue221.cFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected