| 217 | } |
| 218 | |
| 219 | bool ParseValue(wchar_t** argv, int argc, int* i) |
| 220 | { |
| 221 | if (*i + 1 < argc) { |
| 222 | *i += 1; |
| 223 | return true; |
| 224 | } |
| 225 | PrintError(L"error: %s expecting argument.\n", argv[*i]); |
| 226 | return false; |
| 227 | } |
| 228 | |
| 229 | bool ParseValue(wchar_t** argv, int argc, int* i, wchar_t const** value) |
| 230 | { |
no test coverage detected