diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-24 17:53:46 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-26 21:51:47 +0200 |
| commit | 19d9a571afbce0e4d6db3234aeb4ccd221076997 (patch) | |
| tree | 0d44937ecb8350f3ac9e1567d1cdb59f62a9d649 /src/menu/inc | |
| parent | c0887a44fb3c716194ef8eacd27a9556fdfdfc00 (diff) | |
| download | jancity-19d9a571afbce0e4d6db3234aeb4ccd221076997.tar.gz | |
Implement main menu
Diffstat (limited to 'src/menu/inc')
| -rw-r--r-- | src/menu/inc/menu.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/menu/inc/menu.h b/src/menu/inc/menu.h new file mode 100644 index 0000000..4e92a3f --- /dev/null +++ b/src/menu/inc/menu.h @@ -0,0 +1,15 @@ +#ifndef MENU_H +#define MENU_H + +#ifdef __cplusplus +extern "C" +{ +#endif + +int menu(void); + +#ifdef __cplusplus +} +#endif + +#endif /* MENU_H */ |
