MCPcopy Create free account
hub / github.com/ParAlg/gbbs / IOFileNames

Method IOFileNames

gbbs/parse_command_line.cc:23–26  ·  view source on GitHub ↗

looks for two filenames

Source from the content-addressed store, hash-verified

21
22// looks for two filenames
23std::pair<char*, char*> commandLine::IOFileNames() const {
24 if (argc < 3) badArgument();
25 return std::pair<char*, char*>(argv[argc - 2], argv[argc - 1]);
26}
27
28std::pair<int, char*> commandLine::sizeAndFileName() const {
29 if (argc < 3) badArgument();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected