diff options
author | wrmr | 2024-11-09 01:51:42 -0500 |
---|---|---|
committer | wrmr | 2024-11-09 01:51:42 -0500 |
commit | cbb9f606333774f4de6f639891cd1411419ecf2a (patch) | |
tree | 9b75436effccbcd065c32f207f93fce051c64982 /con.h | |
parent | 9ac1ca968081bcb826cf9ee70666bc44983d087f (diff) |
use actual console size for nav_lines(), instead of dummy value
Diffstat (limited to 'con.h')
-rw-r--r-- | con.h | 7 |
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 |