isblank() needs _XOPEN_SOURCE >= 600 || _ISOC99_SOURCE, so use our * own. */
| 24 | /* isblank() needs _XOPEN_SOURCE >= 600 || _ISOC99_SOURCE, so use our |
| 25 | * own. */ |
| 26 | static int |
| 27 | isblank2(char c) |
| 28 | { |
| 29 | if (c == ' ' || |
| 30 | c == '\t' ) |
| 31 | return 1; |
| 32 | return 0; |
| 33 | } |
| 34 | |
| 35 | static int |
| 36 | isendofline(char c) |
no outgoing calls
no test coverage detected