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

1.1       root        1: # include      "hangman.h"
                      2: 
                      3: bool   Guessed[26];
                      4: 
                      5: char   Word[BUFSIZ],
                      6:        Known[BUFSIZ],
                      7:        *Noose_pict[] = {
                      8:                "     ______",
                      9:                "     |    |",
                     10:                "     |",
                     11:                "     |",
                     12:                "     |",
                     13:                "     |",
                     14:                "   __|_____",
                     15:                "   |      |___",
                     16:                "   |_________|",
                     17:                NULL
                     18:        };
                     19: 
                     20: int    Errors,
                     21:        Wordnum = 0;
                     22: 
                     23: double Average = 0.0;
                     24: 
                     25: ERR_POS        Err_pos[MAXERRS] = {
                     26:        {  2, 10, 'O' },
                     27:        {  3, 10, '|' },
                     28:        {  4, 10, '|' },
                     29:        {  5,  9, '/' },
                     30:        {  3,  9, '/' },
                     31:        {  3, 11, '\\' },
                     32:        {  5, 11, '\\' }
                     33: };
                     34: 
                     35: FILE   *Dict = NULL;
                     36: 
                     37: off_t  Dict_size;

unix.superglobalmegacorp.com

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