|
|
1.1 root 1: # include "curses.ext"
2:
3: /*
4: * implement the mvscanw commands. Due to the variable number of
5: * arguments, they cannot be macros. Another sigh....
6: *
7: * 1/26/81 (Berkeley) @(#)mvscanw.c 1.1
8: */
9:
10: mvscanw(y, x, fmt, args)
11: reg int y, x;
12: char *fmt;
13: int args; {
14:
15: return move(y, x) == OK ? _sscanw(stdscr, fmt, &args) : ERR;
16: }
17:
18: mvwscanw(win, y, x, fmt, args)
19: reg WINDOW *win;
20: reg int y, x;
21: char *fmt;
22: int args; {
23:
24: return wmove(win, y, x) == OK ? _sscanw(win, fmt, &args) : ERR;
25: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.