Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ddnet/ddnet
/ str_isnum
Function
str_isnum
src/base/str.cpp:99–102 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
97
}
98
99
bool str_isnum(char c)
100
{
101
return c >=
'0'
&& c <=
'9'
;
102
}
103
104
int str_isallnum(const char *str)
105
{
Callers
7
ParseVersionString
Function · 0.85
TEST
Function · 0.85
str_isallnum
Function · 0.85
str_isallnum_hex
Function · 0.85
str_comp_filenames
Function · 0.85
os_locale_str
Function · 0.85
parse_int
Function · 0.85
Calls
no outgoing calls
Tested by
1
TEST
Function · 0.68