Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/eggert/tz
/ is_digit
Function
is_digit
zdump.c:92–96 ·
view source on GitHub ↗
Is C an ASCII digit? */
Source
from the content-addressed store, hash-verified
90
91
/* Is C an ASCII digit? */
92
static bool
93
is_digit(char c)
94
{
95
return
'0'
<= c && c <=
'9'
;
96
}
97
98
/* Is A an alphabetic character in the C locale? */
99
static bool
Callers
1
abbrok
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected