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

Function application_recovery_files_remove

src/daemon/application.c:654–662  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

652}
653
654static void application_recovery_files_remove(const char *marker_path,
655 const char *quarantine_path) {
656 if (marker_path && marker_path[0]) {
657 (void)cbm_unlink(marker_path);
658 }
659 if (quarantine_path && quarantine_path[0]) {
660 (void)cbm_unlink(quarantine_path);
661 }
662}
663
664static bool application_truncate_file(const char *path) {
665 FILE *file = cbm_fopen(path, "wb");

Callers 1

application_job_recoverFunction · 0.85

Calls 1

cbm_unlinkFunction · 0.85

Tested by

no test coverage detected