locates a flag on the command line
| 6523 | |
| 6524 | // locates a flag on the command line |
| 6525 | bool parseFlag(int argc, const char* const* argv, const char* pattern) { |
| 6526 | return parseOption(argc, argv, pattern); |
| 6527 | } |
| 6528 | |
| 6529 | // parses a comma separated list of words after a pattern in one of the arguments in argv |
| 6530 | bool parseCommaSepArgs(int argc, const char* const* argv, const char* pattern, |
no test coverage detected