What does "void (* parse_arg_function)(const char*)" function argument mean in C?
Posted
by user118657
on Stack Overflow
See other posts from Stack Overflow
or by user118657
Published on 2010-04-04T15:25:53Z
Indexed on
2010/04/04
15:33 UTC
Read the original article
Hit count: 173
Filed under:
c
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.
© Stack Overflow or respective owner