Check response does NOT contain a specific key */
| 997 | |
| 998 | /* Check response does NOT contain a specific key */ |
| 999 | static int resp_lacks_key(const char *resp, const char *key) { |
| 1000 | return !resp_has_key(resp, key); |
| 1001 | } |
| 1002 | |
| 1003 | /* Helper: assert tool call succeeds, warn if slow */ |
| 1004 | #define TOOL_OK(resp, ms) \ |
no test coverage detected