Annotation of 42BSD/usr.lib/libcurses/mvscanw.c, revision 1.1.1.1

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:  * 5/17/83 (Berkeley) @(#)mvscanw.c    1.2
                      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: }

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.