aboutsummaryrefslogtreecommitdiff
path: root/src/menu/inc
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2022-06-24 17:53:46 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2022-06-26 21:51:47 +0200
commitc401b7663d0854a7a3f5c35b6809faf65dc1fd66 (patch)
tree68e2f9af0115bc48fcc34ba41ceb1461bccf5f1d /src/menu/inc
parent70bc98f96c3e4ae7a45ff095c5f539711aaf7fb1 (diff)
downloadrts-c401b7663d0854a7a3f5c35b6809faf65dc1fd66.tar.gz
Implement main menu
Diffstat (limited to 'src/menu/inc')
-rw-r--r--src/menu/inc/menu.h15
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 */