Chris's changes, plus some minor fixes
[unix-history] / usr / src / lib / libcurses / mvprintw.c
CommitLineData
87c6fcf8
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
7#ifndef lint
8static char sccsid[] = "@(#)mvprintw.c 5.1 (Berkeley) %G%";
9#endif not lint
10
9fa02549
KA
11# include "curses.ext"
12
13/*
14 * implement the mvprintw commands. Due to the variable number of
15 * arguments, they cannot be macros. Sigh....
16 *
9fa02549
KA
17 */
18
19mvprintw(y, x, fmt, args)
20reg int y, x;
21char *fmt;
22int args; {
23
24 return move(y, x) == OK ? _sprintw(stdscr, fmt, &args) : ERR;
25}
26
27mvwprintw(win, y, x, fmt, args)
28reg WINDOW *win;
29reg int y, x;
30char *fmt;
31int args; {
32
33 return wmove(win, y, x) == OK ? _sprintw(win, fmt, &args) : ERR;
34}