True if a call to `callee` (substring match on callee_name) was extracted. */
| 109 | |
| 110 | /* True if a call to `callee` (substring match on callee_name) was extracted. */ |
| 111 | static inline int inv_has_call(CBMFileResult *r, const char *callee) { |
| 112 | for (int i = 0; i < r->calls.count; i++) |
| 113 | if (r->calls.items[i].callee_name && strstr(r->calls.items[i].callee_name, callee)) |
| 114 | return 1; |
| 115 | return 0; |
| 116 | } |
| 117 | |
| 118 | /* ── Store-level (full pipeline) invariants ─────────────────────── */ |
| 119 |
no outgoing calls
no test coverage detected