#ifndef __TICTACTOE_H__
#define __TICTACTOE_H__


#define getrandom( min, max ) ((rand() % (int)(((max) + 1) - (min))) + (min))



#define FULL_CARD 511
#define TOTAL_WIN_PATTERNS 8

static unsigned long WINPATTERNS[] = 
{
  7,
  56,
  448,
  73,
  146,
  292,
  273,
  84
};

#endif
