aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/menuwin.c
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2023-12-14 13:35:09 -0600
committerLibravatar bigfoot547 <[email protected]>2023-12-14 13:35:09 -0600
commitdd9d3ba0973e672dec2a8eadbc75f47e5792b92e (patch)
tree02f5dc32cfe9db93c538f8e46755a76df83d27bb /src/ui/menuwin.c
parentreadme (diff)
fix readme and some other stuffHEADmaster
Diffstat (limited to 'src/ui/menuwin.c')
-rw-r--r--src/ui/menuwin.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/ui/menuwin.c b/src/ui/menuwin.c
new file mode 100644
index 0000000..76c0ac3
--- /dev/null
+++ b/src/ui/menuwin.c
@@ -0,0 +1,22 @@
+#include "ui.internal.h"
+
+#include <stddef.h> /* for size_t */
+
+/* number of columns wide a menu window is */
+#define UI__MENUWIN_COLS (20)
+
+size_t ui__menuwin_next_line(char **linep)
+{
+
+}
+
+void ui__init_window_menu(struct ui_window_menu *menu)
+{
+
+}
+
+/* for base.c */
+void ui__destroy_window_menu(struct ui_window_menu *menu)
+{
+
+}