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

Function application_find_watch_locked

src/daemon/application.c:376–384  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

374}
375
376static cbm_daemon_application_watch_t *application_find_watch_locked(
377 cbm_daemon_application_t *application, const char *project) {
378 for (cbm_daemon_application_watch_t *watch = application->watches; watch; watch = watch->next) {
379 if (strcmp(watch->project, project) == 0) {
380 return watch;
381 }
382 }
383 return NULL;
384}
385
386static void application_remove_watch_entry_locked(cbm_daemon_application_t *application,
387 cbm_daemon_application_watch_t *watch,

Calls

no outgoing calls

Tested by

no test coverage detected