| 84 | } |
| 85 | } // namespace SC |
| 86 | |
| 87 | int main(int argc, char** argv) |
| 88 | { |
| 89 | using namespace SC; |
| 90 | constexpr auto NumArgsMax = 10; |
| 91 | StringSpan argumentStorage[NumArgsMax]; |
| 92 | CommandLineArguments arguments; |
| 93 | if (not arguments.setFromMainArguments(argc, argv, argumentStorage)) |
| 94 | { |
| 95 | return -1; |
| 96 | } |
| 97 | return SC::saneMain(arguments.values) ? 0 : -1; |
nothing calls this directly
no test coverage detected