summaryrefslogtreecommitdiff
path: root/con.h
diff options
context:
space:
mode:
Diffstat (limited to 'con.h')
-rw-r--r--con.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/con.h b/con.h
index 0c6fa33..ab2f16a 100644
--- a/con.h
+++ b/con.h
@@ -1,7 +1,12 @@
#ifndef CON_H
#define CON_H
-unsigned con_lines(void);
+struct consz {
+ unsigned rows, cols;
+};
+
+struct consz con_size(void);
+unsigned con_rows(void);
unsigned con_cols(void);
#endif