MCPcopy Create free account
hub / github.com/avast/retdec / isPrintableOrZeroByte

Function isPrintableOrZeroByte

src/utils/string.cpp:106–108  ·  view source on GitHub ↗

* @brief Checks if the given character is either printable or the zero byte. */

Source from the content-addressed store, hash-verified

104* @brief Checks if the given character is either printable or the zero byte.
105*/
106bool isPrintableOrZeroByte(WideCharType c) {
107 return isPrintable(c) || c == '\0';
108}
109
110/**
111* @brief Checks if the given string has any unprintable characters.

Callers 1

Calls 1

isPrintableFunction · 0.85

Tested by

no test coverage detected