Posts Tagged ‘terminfo’

vidattr, vidputs – curses interfaces to terminfo database
USAGE
#include <curses.h>
#include <term.h>

int setupterm(char *term, int fildes, int *errret);
int setterm(char *term);
TERMINAL *set_curterm(TERMINAL *nterm);
[...]

Thursday, August 27th, 2009 at 20:48 | Comments Off
Categories: V

vidattr, vidputs – curses interfaces to terminfo database
USAGE
#include <curses.h>
#include <term.h>

int setupterm(char *term, int fildes, int *errret);
int setterm(char *term);
TERMINAL *set_curterm(TERMINAL *nterm);
[...]

Thursday, August 27th, 2009 at 02:31 | Comments Off
Categories: V

clear – clear the terminal screen
USAGE
clear

DESCRIPTION
clear clears your screen if this is possible. It looks in the environ-
ment for the terminal type and then in the terminfo database to figure
[...]

Wednesday, August 26th, 2009 at 22:31 | Comments Off
Categories: c
TOP