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

Function isNonprintableChar

src/utils/string.cpp:36–38  ·  view source on GitHub ↗

* @brief Returns @c true if @c is non-printable character, @c false otherwise. */

Source from the content-addressed store, hash-verified

34* @brief Returns @c true if @c is non-printable character, @c false otherwise.
35*/
36bool isNonprintableChar(unsigned char c) {
37 return !isPrintableChar(c);
38}
39
40/**
41* @brief Returns @c true if @c is non-ASCII character, @c false otherwise.

Callers 1

hasNonprintableCharsFunction · 0.85

Calls 1

isPrintableCharFunction · 0.85

Tested by

no test coverage detected