The Single UNIX ® Specification, Version 2
Copyright © 1997 The Open Group

 NAME

box_set - draw borders from complex characters and renditions

 SYNOPSIS



#include <curses.h>

int box_set(WINDOW *win, const cchar_t *verch, const cchar_t *horch);

 DESCRIPTION

The box_set() function draws a border around the edges of the specified window. This function does not advance the cursor position. This function does not perform special character processing. This function does not perform wrapping.

The function box_set(win, verch, horch) has an effect equivalent to:


wborder_set(win, verch, verch, horch, horch,
  NULL, NULL, NULL, NULL);

 RETURN VALUE

Upon successful completion, this function returns OK. Otherwise, it returns ERR.

 ERRORS

No errors are defined.

 SEE ALSO

border_set(), hline_set(), <curses.h>.

UNIX ® is a registered Trademark of The Open Group.
Copyright © 1997 The Open Group
[ Main Index | XSH | XCU | XBD | XCURSES | XNS ]