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 ? _sscans(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 ? _sscans(win, fmt, &args) : ERR; 25: }