| 2534 | } |
| 2535 | |
| 2536 | static 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 | |
| 2547 | static int isxdigit(int c) |
| 2548 | { |
no outgoing calls
no test coverage detected