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

Function print_string_hex

tests/test_iter.c:21–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

test_iter.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…