MCPcopy Create free account
hub / github.com/Vector35/debugger / IsPrintableChar

Function IsPrintableChar

core/debuggercontroller.cpp:1900–1903  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1898
1899
1900static inline bool IsPrintableChar(uint8_t c)
1901{
1902 return (c == '\r') || (c == '\n') || (c == '\t') || ((c >= 0x20) && (c <= 0x7e));
1903}
1904
1905
1906static std::string CheckForASCIIString(const DataBuffer& memory)

Callers 4

CheckForASCIIStringFunction · 0.85
CheckForUTF16StringFunction · 0.85
CheckForUTF32StringFunction · 0.85
CheckForLiteralStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected