Get the corresponding long-option string
| 446 | char OptChar(void) const { return *spec; } |
| 447 | // Get the corresponding long-option string |
| 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? |
no outgoing calls
no test coverage detected