Does this option require an argument?
| 448 | const char *LongOpt(void) const { return (spec[1] && spec[2] && (!isspace(spec[2]))) ? (spec + 2) : NULLSTR; } |
| 449 | // Does this option require an argument? |
| 450 | int isValRequired(void) const { return ((spec[1] == ':') || (spec[1] == '+')); } |
| 451 | // Does this option take an optional argument? |
| 452 | int isValOptional(void) const { return ((spec[1] == '?') || (spec[1] == '*')); } |
| 453 | // Does this option take no arguments? |
no outgoing calls
no test coverage detected