MCPcopy Create free account
hub / github.com/GJDuck/e9patch / isalnum

Function isalnum

examples/stdlib.c:2505–2509  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2503/****************************************************************************/
2504
2505static int isalnum(int c)
2506{
2507 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
2508 (c >= '0' && c <= '9');
2509}
2510
2511static int isalpha(int c)
2512{

Callers 1

getTokenMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected