| 3219 | } |
| 3220 | |
| 3221 | int cbm_remove_instructions(const char *path) { |
| 3222 | if (!path) { |
| 3223 | return CLI_ERR; |
| 3224 | } |
| 3225 | return cbm_text_remove_managed_block(path, CMM_MARKER_START, CMM_MARKER_END) == 0 ? CLI_OK |
| 3226 | : CLI_ERR; |
| 3227 | } |
| 3228 | |
| 3229 | /* ── Codex MCP config (TOML) ─────────────────────────────────── */ |
| 3230 |
no test coverage detected