summaryrefslogtreecommitdiffstats
path: root/libterm/term.c
diff options
context:
space:
mode:
Diffstat (limited to 'libterm/term.c')
-rw-r--r--libterm/term.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/libterm/term.c b/libterm/term.c
index 532dc92..241b650 100644
--- a/libterm/term.c
+++ b/libterm/term.c
@@ -250,17 +250,26 @@ exit_error:
}
+#include <assert.h>
//clean terminal with escape command
int term_clr_scr( term_screen *ts )
{
int ret = 0;
- if ( write( ts->ofd, T_ESC "[H" T_ESC "[2J", 7 ) <= 0 ){};
+ char s[] = T_ESC "[H" T_ESC "[2J";
+
+
+ ASSERT( strlen(s)>0 );
+ ASSERT( ts != NULL );
+ ASSERT( ts->ofd > 0 );
+
+ if ( write( ts->ofd, s, strlen(s) ) <= 0 ){};
return ret;
}
+
//set terminal default input/output behavior
int term_set_raw_mode( term_screen *ts )
{