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
8: static char sccsid[] = "@(#)mvprintw.c 5.1 (Berkeley) 6/7/85";
9: #endif not lint
10:
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: *
17: */
18:
19: mvprintw(y, x, fmt, args)
20: reg int y, x;
21: char *fmt;
22: int args; {
23:
24: return move(y, x) == OK ? _sprintw(stdscr, fmt, &args) : ERR;
25: }
26:
27: mvwprintw(win, y, x, fmt, args)
28: reg WINDOW *win;
29: reg int y, x;
30: char *fmt;
31: int args; {
32:
33: return wmove(win, y, x) == OK ? _sprintw(win, fmt, &args) : ERR;
34: }
Defined functions
mvprintw
defined in line
19; used 63 times
- in /usr/src/games/cribbage/crib.c line
142-143(2)
- in /usr/src/games/cribbage/support.c line
198
- in /usr/src/games/hangman/getguess.c line
22,
29
- in /usr/src/games/hangman/prdata.c line
17-20(3)
- in /usr/src/games/mille/comp.c line
321,
350
- in /usr/src/games/mille/end.c line
70,
80
- in /usr/src/games/mille/misc.c line
24
- in /usr/src/games/mille/print.c line
47,
71,
88-93(2),
130
- in /usr/src/ucb/systat/main.c line
153,
199,
214
- in /usr/src/ucb/systat/vmstat.c line
238-289(38),
296,
328-329(2),
348
Defined variables
sccsid
defined in line
8;
never used