MCPcopy Create free account
hub / github.com/EasyRPG/Player / ParseNext

Method ParseNext

src/cmdline_parser.cpp:99–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97}
98
99bool CmdlineParser::ParseNext(CmdlineArg& arg, int max_values, const char* longval, char shortval) {
100 return DoParseNext(arg, max_values,
101 [=](auto& s) { return Utils::StrICmp(longval, s.c_str()) == 0; },
102 shortval);
103}
104
105bool CmdlineParser::ParseNext(CmdlineArg& arg, int max_values, std::initializer_list<const char*> longvals, char shortval) {
106 return DoParseNext(arg, max_values,

Callers 5

LoadFromArgsMethod · 0.80
GetConfigPathMethod · 0.80
LoadFromArgsMethod · 0.80
ParseCommandLineMethod · 0.80
cmdline_parser.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected