xref: /original-bsd/lib/libcurses/addch.c (revision 3f799367)
1 /*
2  * Copyright (c) 1981 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)addch.c	5.5 (Berkeley) 06/01/90";
10 #endif /* not lint */
11 
12 # include	"curses.ext"
13 
14 /*
15  *	This routine adds the character to the current position
16  *
17  */
18 waddch(win, c)
19 WINDOW	*win;
20 char		c;
21 {
22     return waddbytes(win, &c, 1);
23 }
24