MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / isWhitespace

Function isWhitespace

TheForceEngine/TFE_System/parser.cpp:10–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8{
9 static char s_line[4096];
10 bool isWhitespace(const char c)
11 {
12 if (c > 32 && c < 127)
13 {
14 return false;
15 }
16 return true;
17 }
18
19 bool isSeparator(const char c)
20 {

Callers 2

readLineMethod · 0.85
tokenizeLineMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected