Is this option-char null?
| 307 | |
| 308 | // Is this option-char null? |
| 309 | inline static int isNullOpt(char optchar) |
| 310 | { |
| 311 | return ((!optchar) || isspace(optchar) || (!isprint(optchar))); |
| 312 | } |
| 313 | |
| 314 | // Check for explicit "end-of-options" |
| 315 | inline static int isEndOpts(const char *token) |