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

Function isContolCharacter

src/utils/string.cpp:984–986  ·  view source on GitHub ↗

* @return @c True if character @a c is a control character, @c false otherwise. */

Source from the content-addressed store, hash-verified

982 * @return @c True if character @a c is a control character, @c false otherwise.
983 */
984bool isContolCharacter(char c) {
985 return c=='\b' || c=='\f' || c=='\n' || c=='\r' || c=='\t' || c=='\v';
986}
987
988/**
989 * @return @c True if character @a c is a nice character (printable or control).

Callers 2

isNiceCharacterFunction · 0.85
TEST_FFunction · 0.85

Calls

no outgoing calls

Tested by 1

TEST_FFunction · 0.68