locates a flag on the command line
| 3406 | |
| 3407 | // locates a flag on the command line |
| 3408 | bool parseFlag(int argc, const char* const* argv, const char* pattern) { |
| 3409 | return parseOption(argc, argv, pattern); |
| 3410 | } |
| 3411 | |
| 3412 | // parses a comma separated list of words after a pattern in one of the arguments in argv |
| 3413 | bool parseCommaSepArgs(int argc, const char* const* argv, const char* pattern, |
no test coverage detected