| 149 | } |
| 150 | } // namespace SC |
| 151 | |
| 152 | int main(int argc, char** argv) |
| 153 | { |
| 154 | using namespace SC; |
| 155 | constexpr auto NumArgsMax = 10; |
| 156 | StringSpan argumentStorage[NumArgsMax]; |
| 157 | CommandLineArguments arguments; |
| 158 | if (not arguments.setFromMainArguments(argc, argv, argumentStorage)) |
| 159 | { |
| 160 | return -1; |
| 161 | } |
| 162 | return SC::saneMain(arguments.values) ? 0 : -1; |
| 163 | } |
nothing calls this directly
no test coverage detected