What does "void (* parse_arg_function)(const char*)" function argument mean in C?
- by user118657
What does the last function argument mean in C language?
Please, point to documentation where I can read about it.
void parse_options( int argc, char **argv, const OptionDef *options,
void (* parse_arg_function)(const char*) )
Thanks.