typedef struct _menu { struct _menu* n; void(*f)(struct _menu* this); }Menu; void menuInit();