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

Function PrintASCII

fuzz/libfuzzer/FuzzerUtil.cpp:49–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47}
48
49void PrintASCII(const uint8_t *Data, size_t Size, const char *PrintAfter) {
50 for (size_t i = 0; i < Size; i++)
51 PrintASCIIByte(Data[i]);
52 Printf("%s", PrintAfter);
53}
54
55void PrintASCII(const Unit &U, const char *PrintAfter) {
56 PrintASCII(U.data(), U.size(), PrintAfter);

Callers 4

AnalyzeDictionaryFunction · 0.70
DumpCurrentUnitMethod · 0.70
PrintMethod · 0.70
TESTFunction · 0.50

Calls 4

PrintASCIIByteFunction · 0.85
PrintfFunction · 0.70
dataMethod · 0.45
sizeMethod · 0.45

Tested by 1

TESTFunction · 0.40