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

Function isWhitespace

plugins/plugin_utils/plugin_utils.h:104–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102}
103
104inline bool isWhitespace(const char c) {
105 if (((c >= 9) && (c <= 13)) ||
106 (c == 32)) {
107 return true;
108 }
109 return false;
110}
111
112inline bool isPunctuation(const char c) {
113 if ((c > 32 && c < 48) ||

Callers 4

isPrintableFunction · 0.70
no_whitespaceFunction · 0.70
url_encodeFunction · 0.70
trimLeadingWhitespaceFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected