home *** CD-ROM | disk | FTP | other *** search
- NAME
- wbox() box() - draw a box
-
- SYNOPSIS
- #include <curses.h>
- #include <curspriv.h>
-
- int wbox(win,ymin,xmin,ymax,xmax,v,h)
- WINDOW *win;
- int ymin;
- int xmin;
- int ymax;
- int xmax;
- char v;
- char h;
-
- void box(win,vc,hc)
- WINDOW *win;
- char vc;
- char hc;
-
- DESCRIPTION
- wbox(win,ymin,xmin,ymax,xmax,v,h) draws a box in window
- 'win', enclosing the area xmin-xmax and ymin-xmax. If
- xmax and/or ymax is 0, the window max value is used. 'v' and
- 'h' are the vertical and horizontal characters to use. If
- 'v' and 'h' are PC grapics lines, wbox will make the corners
- in a pretty way.
-
- box(win,v,h) draws a box around window window 'win'. 'v' and
- 'h' are the vertical and horizontal characters to use.
-
- EXAMPLES
-
- SEE ALSO
-
- BUGS
-