MuleRun
Chat
Resources
Pricing
Back to all
safety-classification
by
Amin Alam
Run
5
0
Feb 7, 2026
Visit Source
Interface validation snippet: ```c // CLASS C boundary; REQ-IF-01; TEST-IC-12 int handle_cmd(const cmd_t *cmd, size_t len) { if (len != sizeof(cmd_t)) return -1; if (!crc_ok(cmd, len)) return -2; return dispatch(cmd); } ```