Can this option take more than one argument?
| 454 | int isNoArg(void) const { return ((spec[1] == '|') || (!spec[1])); } |
| 455 | // Can this option take more than one argument? |
| 456 | int isList(void) const { return ((spec[1] == '+') || (spec[1] == '*')); } |
| 457 | // Does this option take any arguments? |
| 458 | int isValTaken(void) const { return (isValRequired() || isValOptional()); } |
| 459 | // Format this option in the given buffer |
no outgoing calls
no test coverage detected