If I want to define what is a double -> double function pointer I use:
typedef double (*double_fp1)(double);
But what if I would like to distinguish
const double -> double
it is possible?
And the above definition consists the const double -> duble function?