1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright (c) 1995, by Sun Microsystems, Inc.
24  * All rights reserved.
25  */
26 
27 /*
28  * hln.c
29  *
30  * XCurses Library
31  *
32  * Copyright 1990, 1995 by Mortice Kern Systems Inc.  All rights reserved.
33  *
34  */
35 
36 #if M_RCSID
37 #ifndef lint
38 static char rcsID[] = "$Header: /rd/src/libc/xcurses/rcs/hln.c 1.1 1995/05/29 19:59:30 ant Exp $";
39 #endif
40 #endif
41 
42 #include <private.h>
43 
44 #undef hline
45 
46 int
hline(chtype h,int n)47 hline(chtype h, int n)
48 {
49 	int code;
50 
51 #ifdef M_CURSES_TRACE
52 	__m_trace("hline(%ld, %d)", h, n);
53 #endif
54 
55 	code = whline(stdscr, h, n);
56 
57 	return __m_return_code("hline", code);
58 }
59 
60 #undef mvhline
61 
62 int
mvhline(int y,int x,chtype h,int n)63 mvhline(int y, int x, chtype h, int n)
64 {
65 	int code;
66 
67 #ifdef M_CURSES_TRACE
68 	__m_trace("mvhline(%d, %d, %ld, %d)", y, x, h, n);
69 #endif
70 
71 	if ((code = wmove(stdscr, y, x)) == OK)
72 		code = whline(stdscr, h, n);
73 
74 	return __m_return_code("mvhline", code);
75 }
76 
77 #undef mvwhline
78 
79 int
mvwhline(WINDOW * w,int y,int x,chtype h,int n)80 mvwhline(WINDOW *w, int y, int x, chtype h, int n)
81 {
82 	int code;
83 
84 #ifdef M_CURSES_TRACE
85 	__m_trace("mvwhline(%p, %d, %d, %ld, %d)", w, y, x, h, n);
86 #endif
87 
88 	if ((code = wmove(w, y, x)) == OK)
89 		code = whline(w, h, n);
90 
91 	return __m_return_code("mvwhline", code);
92 }
93 
94 #undef vline
95 
96 int
vline(chtype v,int n)97 vline(chtype v, int n)
98 {
99 	int code;
100 
101 #ifdef M_CURSES_TRACE
102 	__m_trace("vline(%ld, %d)", v, n);
103 #endif
104 
105 	code = wvline(stdscr, v, n);
106 
107 	return __m_return_code("vline", code);
108 }
109 
110 #undef mvvline
111 
112 int
mvvline(int y,int x,chtype v,int n)113 mvvline(int y, int x, chtype v, int n)
114 {
115 	int code;
116 
117 #ifdef M_CURSES_TRACE
118 	__m_trace("mvvline(%d, %d, %ld, %d)", y, x, v, n);
119 #endif
120 
121 	if ((code = wmove(stdscr, y, x)) == OK)
122 		code = wvline(stdscr, v, n);
123 
124 	return __m_return_code("mvvline", code);
125 }
126 
127 #undef mvwvline
128 
129 int
mvwvline(WINDOW * w,int y,int x,chtype v,int n)130 mvwvline(WINDOW *w, int y, int x, chtype v, int n)
131 {
132 	int code;
133 
134 #ifdef M_CURSES_TRACE
135 	__m_trace("mvwvline(%p, %d, %d, %ld, %d)", w, y, x, v, n);
136 #endif
137 
138 	if ((code = wmove(w, y, x)) == OK)
139 		code = wvline(w, v, n);
140 
141 	return __m_return_code("mvwvline", code);
142 }
143 
144