Prototype of a function

Can any one please explain what will be the prototype of the following function with function pointer as an argument.void middlecall(void (*funtocallargptr)(void)) {(*funtocallargptr)();} -Jerry
[229 byte] By [jerryragland] at [2007-11-26 10:02:51]
# 1
Either[code]void middlecall(void (*funtocallargptr)(void));[/code]or [code]void middlecall(void (*)(void));[/code]Paul
Paul_Floyd at 2007-7-7 1:35:39 > top of Java-index,Development Tools,Solaris and Linux Development Tools...
# 2
Works Good paul .... Thanks...-Jerry
jerryragland at 2007-7-7 1:35:39 > top of Java-index,Development Tools,Solaris and Linux Development Tools...