This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/MCU/MCU_REAL _FINAL/menu.h
2022-05-19 21:07:52 +08:00

7 lines
No EOL
97 B
C

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