MCPcopy Create free account
hub / github.com/dirkvranckaert/AndroidDecompiler / getArgvOptions

Method getArgvOptions

astyle/src/astyle_main.cpp:575–583  ·  view source on GitHub ↗

build a vector of argv options the program path argv[0] is excluded

Source from the content-addressed store, hash-verified

573// build a vector of argv options
574// the program path argv[0] is excluded
575vector<string> ASConsole::getArgvOptions(int argc, char** argv) const
576{
577 vector<string> argvOptions;
578 for (int i = 1; i < argc; i++)
579 {
580 argvOptions.push_back(string(argv[i]));
581 }
582 return argvOptions;
583}
584
585// for unit testing
586vector<bool> ASConsole::getExcludeHitsVector()

Callers 1

mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected