home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / OS2 / SPEL / UCHESS / UCHESSRC / TMP.C < prev    next >
Text File  |  1994-11-01  |  352b  |  19 lines

  1. #include <stdio.h>
  2.  
  3. #define ETABLE (18001)          /* static eval cache was 18001 in uchess pl70 */
  4.     struct etable
  5.     { unsigned long ehashbd;
  6.         short int escore[2];
  7.         short int sscore[64];
  8.         short int score;
  9.         short int xx_pad;
  10.         short int hung[2];
  11.     } ;
  12.  
  13. struct etable etab[2][ETABLE];
  14.  
  15. void main()
  16. {
  17.  printf("%d\n",sizeof(etab));
  18. }
  19.