Manual Page Result
0
Command: termcap | Section: 3 | Source: UNIX v10 | File: termcap.3
TERMCAP(3X) TERMCAP(3X)
NAME
tgetent, tgetnum, tgetflag, tgetstr, tgoto, tputs - device-independent
terminal screen control
SYNOPSIS
char PC;
char *BC;
char *UP;
short ospeed;
tgetent(bp, name)
char bp[1024], *name;
tgetnum(id)
char *id;
tgetflag(id)
char *id;
char *
tgetstr(id, area)
char *id, **area;
char *
tgoto(cm, destcol, destline)
char *cm;
tputs(cp, affcnt, outc)
char *cp;
int (*outc)();
DESCRIPTION
These functions are loaded by option -ltermcap of ld(1). They extract
and use capabilities from the terminal capability data base termcap(5).
These are low level routines; see curses(3) for a higher level package.
Tgetent extracts the entry for terminal name into the buffer at bp. Bp
should be a character buffer of size 1024 and must be retained through
all subsequent calls to tgetnum, tgetflag, and tgetstr. Tgetent re-
turns -1 if it cannot open the termcap file, 0 if the terminal name
given does not have an entry, and 1 if all goes well. It will look in
the environment for a variable. If found, and the value does not begin
with a slash, and the terminal type name is the same as the value of
the environment variable the string is used instead of reading the
termcap file. If it does begin with a slash, the string is used as a
path name rather than
Tgetnum gets the numeric value of capability id, returning -1 if is not
given for the terminal. Tgetflag returns 1 if the specified capability
is present in the terminal's entry, 0 if it is not. Tgetstr gets the
string value of capability id, placing it in the buffer at *area, ad-
vancing the area pointer. It decodes the abbreviations for this field
described in termcap(5), except for cursor addressing and padding in-
formation.
Tgoto returns a cursor addressing string decoded from cm to go to col-
umn destcol in line destline. It uses the external variables UP (from
the capability) and BC (if is given rather than if necessary to avoid
placing or in the returned string. (Programs which call tgoto should
be sure to turn off the XTABS bit(s), since tgoto may now output a tab.
Note that programs using termcap should in general turn off XTABS any-
way since some terminals use ^I for other functions, such as nonde-
structive space.) If a % sequence is given which is not understood,
then tgoto returns
Tputs decodes the leading padding information of the string cp; affcnt
gives the number of lines affected by the operation, or 1 if this is
not applicable; outc is a routine which is called with each character
in turn. The external variable ospeed should contain the output speed
of the terminal as in tty(4). The external variable PC should contain
a pad character to be used (from the capability) if a null (^@) is in-
appropriate.
FILES
SEE ALSO
vi(1), curses(3), termcap(5)
TERMCAP(3X)