MCPcopy Create free account
hub / github.com/dobin/RedEdr / write_hex_byte

Function write_hex_byte

RedEdrShared/loguru.cpp:559–563  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

557 }
558
559 static void write_hex_byte(std::string& out, uint8_t n)
560 {
561 write_hex_digit(out, n >> 4u);
562 write_hex_digit(out, n & 0x0f);
563 }
564
565 static void escape(std::string& out, const std::string& str)
566 {

Callers 1

escapeFunction · 0.85

Calls 1

write_hex_digitFunction · 0.85

Tested by

no test coverage detected