MCPcopy Create free account
hub / github.com/capstone-engine/capstone / print_string_hex

Function print_string_hex

tests/test_x86.c:22–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20};
21
22static 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
34static const char *get_eflag_name(uint64_t flag)
35{

Callers 2

print_insn_detailFunction · 0.70
testFunction · 0.70

Calls 1

printfFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…