| 31 | } nc_rigid_t; |
| 32 | |
| 33 | void dumphex(const unsigned char *buf, int n) |
| 34 | { |
| 35 | for (int i = 0; i < n; ++i) { printf("%02x ", buf[i]); } |
| 36 | |
| 37 | printf("\n"); |
| 38 | } |
| 39 | |
| 40 | #define WRITE(f,b,l) write_sim(f,(const unsigned char*)b,l,__func__,__LINE__) |
| 41 |
no outgoing calls
no test coverage detected