MCPcopy Create free account
hub / github.com/BZFlag-Dev/bzflag / isVisible

Function isVisible

plugins/plugin_utils/plugin_utils.h:129–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127}
128
129inline bool isVisible(const char c) {
130 if (isAlphanumeric(c) || isPunctuation(c)) {
131 return true;
132 }
133 return false;
134}
135
136inline bool isPrintable(const char c) {
137 if (isVisible(c) || isWhitespace(c)) {

Callers 1

isPrintableFunction · 0.70

Calls 2

isAlphanumericFunction · 0.70
isPunctuationFunction · 0.70

Tested by

no test coverage detected