I have the following struct and function declaration in C:
typedef int (*callback)(struct instance *); typedef struct instance { int x; callback f; }