#if M_RCSID
#ifndef lint
static char rcsID[] = "$Header: /rd/src/libc/xcurses/rcs/hln_st.c 1.1 "
"1995/05/29 19:59:32 ant Exp $";
#endif
#endif
#include <private.h>
#undef hline_set
int
hline_set(const cchar_t *h, int n)
{
int code;
code = whline_set(stdscr, h, n);
return (code);
}
#undef mvhline_set
int
mvhline_set(int y, int x, const cchar_t *h, int n)
{
int code;
if ((code = wmove(stdscr, y, x)) == OK)
code = whline_set(stdscr, h, n);
return (code);
}
#undef mvwhline_set
int
mvwhline_set(WINDOW *w, int y, int x, const cchar_t *h, int n)
{
int code;
if ((code = wmove(w, y, x)) == OK)
code = whline_set(w, h, n);
return (code);
}
#undef vline_set
int
vline_set(const cchar_t *v, int n)
{
int code;
code = wvline_set(stdscr, v, n);
return (code);
}
#undef mvvline_set
int
mvvline_set(int y, int x, const cchar_t *v, int n)
{
int code;
if ((code = wmove(stdscr, y, x)) == OK)
code = wvline_set(stdscr, v, n);
return (code);
}
#undef mvwvline_set
int
mvwvline_set(WINDOW *w, int y, int x, const cchar_t *v, int n)
{
int code;
if ((code = wmove(w, y, x)) == OK)
code = wvline_set(w, v, n);
return (code);
}