char * function_type(function)
Returns a new allocated string containing the function type.
For instancefunction_type(function_type)
returns the following string: "char*(*)(void*)"
.
Attention Be careful, the string is allocated each time the function is called, use free() to release it.