Annotation of 42BSD/games/hangman/prman.c, revision 1.1.1.1

1.1       root        1: # include      "hangman.h"
                      2: 
                      3: /*
                      4:  * prman:
                      5:  *     Print out the man appropriately for the give number
                      6:  *     of incorrect guesses.
                      7:  */
                      8: prman()
                      9: {
                     10:        register int    i;
                     11: 
                     12:        for (i = 0; i < Errors; i++)
                     13:                mvaddch(Err_pos[i].y, Err_pos[i].x, Err_pos[i].ch);
                     14:        while (i < MAXERRS) {
                     15:                mvaddch(Err_pos[i].y, Err_pos[i].x, ' ');
                     16:                i++;
                     17:        }
                     18: }

unix.superglobalmegacorp.com

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