MCPcopy Create free account
hub / github.com/HexHive/NASS / PrintHexArray

Function PrintHexArray

fuzz/libfuzzer/FuzzerUtil.cpp:27–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25namespace fuzzer {
26
27void PrintHexArray(const uint8_t *Data, size_t Size,
28 const char *PrintAfter) {
29 for (size_t i = 0; i < Size; i++)
30 Printf("0x%x,", (unsigned)Data[i]);
31 Printf("%s", PrintAfter);
32}
33
34void Print(const Unit &v, const char *PrintAfter) {
35 PrintHexArray(v.data(), v.size(), PrintAfter);

Callers 2

PrintFunction · 0.85
DumpCurrentUnitMethod · 0.85

Calls 1

PrintfFunction · 0.70

Tested by

no test coverage detected