MCPcopy Create free account
hub / github.com/OpenPTrack/open_ptrack_v2 / IsWhitespace

Function IsWhitespace

opt_utils/src/json.cpp:81–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79 };
80
81 inline bool IsWhitespace(char c)
82 {
83 return (c == '\n' || c == ' ' || c == '\t' || c == '\r' || c == '\f');
84 }
85 inline bool IsNumber(char c)
86 {
87 return ((c >= '0' && c <= '9') || c == '.' || c == '-');

Callers 2

DetermineTypeMethod · 0.85
tokenizeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected