MCPcopy Create free account
hub / github.com/catboost/catboost / IsPrintable

Function IsPrintable

library/cpp/yson/writer.cpp:31–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29 }
30
31 inline bool IsPrintable(char c) {
32 return c >= 32 && c <= 126;
33 }
34
35 inline bool IsHexDigit(char c) {
36 return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f');

Callers 1

EscapeCFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected