Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/GJDuck/e9patch
/ isalpha
Function
isalpha
examples/stdlib.c:2511–2514 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
2509
}
2510
2511
static int isalpha(int c)
2512
{
2513
return (c >=
'a'
&& c <=
'z'
) || (c >=
'A'
&& c <=
'Z'
);
2514
}
2515
2516
static int isdigit(int c)
2517
{
Callers
2
parseFunctionName
Function · 0.85
getToken
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected