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

Function print_string_hex

tests/test_basic.c:20–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18};
19
20static void print_string_hex(unsigned char *str, size_t len)
21{
22 unsigned char *c;
23
24 printf("Code: ");
25 for (c = str; c < str + len; c++) {
26 printf("0x%02x ", *c & 0xff);
27 }
28 printf("\n");
29}
30
31static void test()
32{

Callers 1

test_basic.cFile · 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…