MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / find_option

Function find_option

cmdutils.c:108–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106}
107
108static const OptionDef* find_option(const OptionDef *po, const char *name){
109 while (po->name != NULL) {
110 if (!strcmp(name, po->name))
111 break;
112 po++;
113 }
114 return po;
115}
116
117void parse_options(int argc, char **argv, const OptionDef *options,
118 void (* parse_arg_function)(const char*))

Callers 1

parse_optionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected