HP-UX Reference (11i v1 00/12) - 3 Library Functions A-M (vol 6)
__________________________________________________________________________________________________________________________________________________________________________________________________
__________________________________________________________________________________________________________________________________________________________________________________________________
STANDARD Printed by: Nora Chuang [nchuang] STANDARD
/build/1111/BRICK/man3/!!!intro.3c
________________________________________________________________
___ ___
h
hline(3X) hline(3X)
(ENHANCED CURSES)
NAME
hline, mvhline, mvvline, mvwhline, mvwvline, vline, whline, wvline — draw lines from single-byte charac-
ters and renditions
SYNOPSIS
#include <curses.h>
int hline(chtype ch, int n);
int mvhline(int y, int x, chtype ch, int n);
int mvvline(int y, int x, chtype ch, int n);
int mvwhline(WINDOW *win, int y, int x, chtype ch, int n);
int mvwvline(WINDOW *win, int y, int x, chtype ch, int n);
int vline(chtype ch, int n);
int whline(WINDOW *win, chtype ch, int n);
int wvline(WINDOW *win, chtype ch, int n);
DESCRIPTION
These functions draw a line in the current or specified window starting at the current or specified position,
using ch. The line is at most n positions long, or as many as fit into the window.
These functions do not advance the cursor position. These functions do not perform special character pro-
cessing. These functions do not perform wrapping.
The hline(), mvhline(), mvwhline() and whline() functions draw a line proceeding toward the
last column of the same line.
The vline(), mvvline(), mvwvline() and wvline() functions draw a line proceeding toward the
last line of the window.
RETURN VALUE
Upon successful completion, these functions return OK. Otherwise, they return ERR.
ERRORS
No errors are defined.
APPLICATION USAGE
These functions are only guaranteed to operate reliably on character sets in which each character fits into a
single byte, whose attributes can be expressed using only constants with the A_ prefix.
SEE ALSO
border(3X), box(3X), hline_set(3X), <curses.h>.
CHANGE HISTORY
First released in X/Open Curses, Issue 4.
HP-UX Release 11i: December 2000 − 1 − Section 3−−427
___
___