| 36 | } |
| 37 | |
| 38 | int writeCString(const char *str, FILE *pipe) { |
| 39 | size_t len = strlen(str) + 1; |
| 40 | if (fwrite((void *)str, 1, len, pipe) != len) { |
| 41 | return 0; |
| 42 | } |
| 43 | return 1; |
| 44 | } |
| 45 | |
| 46 | int readInstructionEvent(QBDI::rword *address, char *mnemonic, |
| 47 | size_t mnemonic_len, char *disassembly, |
no outgoing calls
no test coverage detected