Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BZFlag-Dev/bzflag
/ isNumeric
Function
isNumeric
plugins/plugin_utils/plugin_utils.h:97–102 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
95
}
96
97
inline bool isNumeric(const char c) {
98
if ((c > 47 && c < 58)) {
99
return true;
100
}
101
return false;
102
}
103
104
inline bool isWhitespace(const char c) {
105
if (((c >= 9) && (c <= 13)) ||
Callers
1
isAlphanumeric
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected