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  * ins_wch.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/ins_wch.c 1.3 1995/06/07 12:56:33 ant Exp $";
39 #endif
40 #endif
41 
42 #include <private.h>
43 
44 int
45 (ins_wch)(cc)
46 const cchar_t *cc;
47 {
48 	int code;
49 
50 #ifdef M_CURSES_TRACE
51 	__m_trace("ins_wch(%p)", cc);
52 #endif
53 
54 	code = wins_wch(stdscr, cc);
55 
56 	return __m_return_code("ins_wch", code);
57 }
58 
59 int
60 (mvins_wch)(y, x, cc)
61 int y, x;
62 const cchar_t *cc;
63 {
64 	int code;
65 
66 #ifdef M_CURSES_TRACE
67 	__m_trace("mvins_wch(%d, %d, %p)", y, x, cc);
68 #endif
69 
70 	if ((code = wmove(stdscr, y, x)) == OK)
71 		code = wins_wch(stdscr, cc);
72 
73 	return __m_return_code("mvins_wch", code);
74 }
75 
76 int
77 (mvwins_wch)(w, y, x, cc)
78 WINDOW *w;
79 int y, x;
80 const cchar_t *cc;
81 {
82 	int code;
83 
84 #ifdef M_CURSES_TRACE
85 	__m_trace("mvwins_wch(%p, %d, %d, %p)", w, y, x, cc);
86 #endif
87 
88 	if ((code = wmove(w, y, x)) == OK)
89 		code = wins_wch(w, cc);
90 
91 	return __m_return_code("mvwins_wch", code);
92 }
93