void generate_sequence (int xs, int currentlen, int seqlen, int *seq);
void check_loop_iterative(void (*f)(?), int xs, int seqlen, int *loop, int *looplen);
I need to pass first function to second function.So my question is.How should I fill the parameters where the question mark is?
int,int,int,int*spring to mind. That, going off the soothsaying assumption that "I need to pass first function to second function." actually means "I need to declare a function pointer parameterf, compatible with the first function, as the first parameter to the second function."int, int, int, *int?