SYNOPSIS
#include <curses.h>
int border(chtype ls, chtype rs, chtype ts, chtype bs, chtype tl, chtype tr, chtype bl, chtype br);
int wborder(WINDOW *win, chtype ls, chtype rs, chtype ts, chtype bs, chtype tl, chtype tr, chtype bl, chtype br);
int box(WINDOW *win, chtype verch, chtype horch);
int hline(chtype ch, int n);
int whline(WINDOW *win, chtype ch, int n);
int vline(chtype ch, int n);
int wvline(WINDOW *win, chtype ch, int n);
mvhline(int y, int x, chtype ch, int n);
mvwhline(WINDOW *, int y, int x, chtype ch, int n);
int mvvline(int y, int x, chtype ch, int n);
int mvwvline(WINDOW *, int y, int x, chtype ch, int n);
DESCRIPTION
The
box(win, verch, horch) is a shorthand for the following call:
wborder(win, verch, verch, horch, horch, 0, 0, 0, 0).
The
The
RETURN VALUES
All routines return the integer OK. The SVr4.0 manual
says "or a non-negative integer if
NOTES
The borders generated by these functions are inside borders (this is also true of SVr4 curses, though the fact is not documented).
Note that
PORTABILITY
These functions are described in the XSI Curses standard,
Issue 4. Additional functions
AVAILABILITY
PTC MKS Toolkit for Professional Developers
PTC MKS Toolkit for Enterprise Developers
PTC MKS Toolkit for Enterprise Developers 64-Bit Edition
SEE ALSO
- Functions:
curs_outopts() ,curses()
PTC MKS Toolkit 10.4 Documentation Build 39.