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

Function isspace

examples/stdlib.c:2536–2545  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2534}
2535
2536static int isspace(int c)
2537{
2538 switch (c)
2539 {
2540 case ' ': case '\n': case '\r': case '\t': case '\v': case '\f':
2541 return true;
2542 default:
2543 return false;
2544 }
2545}
2546
2547static int isxdigit(int c)
2548{

Callers 8

peekTokenFunction · 0.85
sendCodeMethod · 0.85
entryToIntFunction · 0.85
getTokenMethod · 0.85
getBlobMethod · 0.85
atoi_convertFunction · 0.85
scanf_get_numFunction · 0.85
scanf_implFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected