Hash table foreach callback to free state entries */
| 361 | |
| 362 | /* Hash table foreach callback to free state entries */ |
| 363 | static void free_state_entry(const char *key, void *val, void *ud) { |
| 364 | (void)key; |
| 365 | (void)ud; |
| 366 | state_free(val); |
| 367 | } |
| 368 | |
| 369 | /* ── Watcher lifecycle ──────────────────────────────────────────── */ |
| 370 |
nothing calls this directly
no test coverage detected