7 lines
97 B
C
7 lines
97 B
C
|
typedef struct _menu
|
||
|
{
|
||
|
struct _menu* n;
|
||
|
void(*f)(struct _menu* this);
|
||
|
}Menu;
|
||
|
|
||
|
void menuInit();
|