summary refs log tree commit diff
path: root/con.h
diff options
context:
space:
mode:
authorwrmr2024-11-09 01:51:42 -0500
committerwrmr2024-11-09 01:51:42 -0500
commitcbb9f606333774f4de6f639891cd1411419ecf2a (patch)
tree9b75436effccbcd065c32f207f93fce051c64982 /con.h
parent9ac1ca968081bcb826cf9ee70666bc44983d087f (diff)
use actual console size for nav_lines(), instead of dummy value
Diffstat (limited to 'con.h')
-rw-r--r--con.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/con.h b/con.h
new file mode 100644
index 0000000..0c6fa33
--- /dev/null
+++ b/con.h
@@ -0,0 +1,7 @@
+#ifndef CON_H
+#define CON_H
+
+unsigned con_lines(void);
+unsigned con_cols(void);
+
+#endif