| 20 | }; |
| 21 | |
| 22 | static void print_string_hex(const char *comment, unsigned char *str, size_t len) |
| 23 | { |
| 24 | unsigned char *c; |
| 25 | |
| 26 | printf("%s", comment); |
| 27 | for (c = str; c < str + len; c++) { |
| 28 | printf("0x%02x ", *c & 0xff); |
| 29 | } |
| 30 | |
| 31 | printf("\n"); |
| 32 | } |
| 33 | |
| 34 | static const char *get_eflag_name(uint64_t flag) |
| 35 | { |
no test coverage detected
searching dependent graphs…