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

Function rp409_write_file

tests/repro/repro_issue409.c:72–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70/* ── Local helpers (mirror the helpers in test_cli.c) ──────────────── */
71
72static int rp409_write_file(const char *path, const char *content) {
73 FILE *f = fopen(path, "w");
74 if (!f)
75 return -1;
76 fprintf(f, "%s", content);
77 fclose(f);
78 return 0;
79}
80
81static const char *rp409_read_file(const char *path) {
82 static char buf[16384];

Callers 1

repro_issue409.cFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected