MCPcopy 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
2511static int isalpha(int c)
2512{
2513 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
2514}
2515
2516static int isdigit(int c)
2517{

Callers 2

parseFunctionNameFunction · 0.85
getTokenMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected