1: /*
   2:  * Copyright (c) 1987 by Ed James, UC Berkeley.  All rights reserved.
   3:  *
   4:  * Copy permission is hereby granted provided that this notice is
   5:  * retained on all partial or complete copies.
   6:  *
   7:  * For more info on this and all of my stuff, mail edjames@berkeley.edu.
   8:  */
   9: 
  10: #include "include.h"
  11: 
  12: char        GAMES[] =   "Game_List",
  13:         LOG[] =     "ATC_scores";
  14: 
  15: int     clock, safe_planes, start_time, test_mode;
  16: 
  17: char        *file;
  18: 
  19: FILE        *filein, *fileout;
  20: 
  21: C_SCREEN        screen, *sp = &screen;
  22: 
  23: LIST        air, ground;
  24: 
  25: struct sgttyb   tty_start, tty_new;
  26: 
  27: DISPLACEMENT    displacement[MAXDIR] = {
  28:         {  0, -1 },
  29:         {  1, -1 },
  30:         {  1,  0 },
  31:         {  1,  1 },
  32:         {  0,  1 },
  33:         { -1,  1 },
  34:         { -1,  0 },
  35:         { -1, -1 }
  36: };

Defined variables

GAMES defined in line 12; used 3 times
displacement defined in line 27; never used
file defined in line 17; used 20 times
start_time defined in line 15; used 2 times
test_mode defined in line 15; used 2 times
tty_new defined in line 25; used 16 times
tty_start defined in line 25; used 4 times
Last modified: 1987-03-11
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 2640
Valid CSS Valid XHTML 1.0 Strict