Annotation of 41BSD/lib/libcurses/standout.c, revision 1.1.1.1

1.1       root        1: # include      "curses.ext"
                      2: 
                      3: /*
                      4:  * enter standout mode
                      5:  */
                      6: char *
                      7: wstandout(win)
                      8: reg WINDOW     *win;
                      9: {
                     10:        if (!SO)
                     11:                return FALSE;
                     12: 
                     13:        win->_flags |= _STANDOUT;
                     14:        return SO;
                     15: }
                     16: 
                     17: /*
                     18:  * exit standout mode
                     19:  */
                     20: char *
                     21: wstandend(win)
                     22: reg WINDOW     *win;
                     23: {
                     24:        if (!SO)
                     25:                return FALSE;
                     26: 
                     27:        win->_flags &= ~_STANDOUT;
                     28:        return SE;
                     29: }

unix.superglobalmegacorp.com

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