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-1998 by Sun Microsystems, Inc.
24  * All rights reserved.
25  */
26 
27 /* LINTLIBRARY */
28 
29 /*
30  * attr_on.c
31  *
32  * Copyright 1990, 1995 by Mortice Kern Systems Inc.  All rights reserved.
33  *
34  */
35 
36 #ifdef M_RCSID
37 #ifndef lint
38 static char rcsID[] =
39 "$Header: /team/ps/sun_xcurses/archive/local_changes/xcurses/src/lib/"
40 "libxcurses/src/libc/xcurses/rcs/attr_on.c 1.2 1998/05/28 17:10:05 "
41 "cbates Exp $";
42 #endif
43 #endif
44 
45 #include <private.h>
46 
47 #undef attr_on
48 
49 int
attr_on(attr_t at,void * opts)50 attr_on(attr_t at, void *opts)
51 {
52 	(void) wattr_on(stdscr, at, opts);
53 
54 	return (OK);
55 }
56 
57 #undef attr_off
58 
59 int
attr_off(attr_t at,void * opts)60 attr_off(attr_t at, void *opts)
61 {
62 	(void) wattr_off(stdscr, at, opts);
63 
64 	return (OK);
65 }
66 
67 #undef attr_set
68 
69 int
attr_set(attr_t at,short co,void * opts)70 attr_set(attr_t at, short co, void *opts)
71 {
72 	(void) wattr_set(stdscr, at, co, opts);
73 
74 	return (OK);
75 }
76 
77 #undef color_set
78 
79 int
color_set(short co,void * opts)80 color_set(short co, void *opts)
81 {
82 	(void) wcolor_set(stdscr, co, opts);
83 
84 	return (OK);
85 }
86 
87 #undef attr_get
88 
89 int
attr_get(attr_t * at,short * co,void * opts)90 attr_get(attr_t *at, short *co, void *opts)
91 {
92 	(void) wattr_get(stdscr, at, co, opts);
93 
94 	return (OK);
95 }
96 
97 #undef standout
98 #undef wstandout
99 
100 int
standout(void)101 standout(void)
102 {
103 	(void) wstandout(stdscr);
104 
105 	return (1);
106 }
107 
108 #undef standend
109 #undef wstandend
110 
111 int
standend(void)112 standend(void)
113 {
114 	(void) wstandend(stdscr);
115 
116 	return (1);
117 }
118