summaryrefslogtreecommitdiffstats
path: root/mbbsd/pfterm.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-01-06 12:35:16 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2008-01-06 12:35:16 +0800
commitea71bde6b0addb910454451a969e2cfeca14eb4d (patch)
tree823a5287668cc1c0fd3fdbb23e5e205b48a6108d /mbbsd/pfterm.c
parent312ac55f526f388f6154c9861f232659d348aae2 (diff)
downloadpttbbs-ea71bde6b0addb910454451a969e2cfeca14eb4d.tar
pttbbs-ea71bde6b0addb910454451a969e2cfeca14eb4d.tar.gz
pttbbs-ea71bde6b0addb910454451a969e2cfeca14eb4d.tar.bz2
pttbbs-ea71bde6b0addb910454451a969e2cfeca14eb4d.tar.lz
pttbbs-ea71bde6b0addb910454451a969e2cfeca14eb4d.tar.xz
pttbbs-ea71bde6b0addb910454451a969e2cfeca14eb4d.tar.zst
pttbbs-ea71bde6b0addb910454451a969e2cfeca14eb4d.zip
- mail: prevent false alerts more carefully
- pfterm: add getmaxyx - bbslua: change format detection and API refine - var/mode: string fix git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3796 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/pfterm.c')
-rw-r--r--mbbsd/pfterm.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/mbbsd/pfterm.c b/mbbsd/pfterm.c
index 11a4d66c..df0ecb29 100644
--- a/mbbsd/pfterm.c
+++ b/mbbsd/pfterm.c
@@ -299,6 +299,7 @@ void attrsetbg (ftattr attr);
// cursor
void getyx (int *y, int *x);
+void getmaxyx (int *y, int *x);
void move (int y, int x);
// clear
@@ -888,6 +889,15 @@ getyx(int *y, int *x)
}
void
+getmaxyx(int *y, int *x)
+{
+ if (y)
+ *y = ft.rows;
+ if (x)
+ *x = ft.cols;
+}
+
+void
move(int y, int x)
{
y = ranged(y, 0, ft.rows-1);