BSD 4_1c_2 release
[unix-history] / usr / src / games / cribbage / deck.h
index 7442b03..fbb9f84 100644 (file)
@@ -1,3 +1,6 @@
+/*
+ *     deck.h  1.1     82/05/12
+ */
 
 /*
  * define structure of a deck of cards and other related things
 
 /*
  * define structure of a deck of cards and other related things
 #define                JACK            10
 #define                QUEEN           11
 #define                KING            12
 #define                JACK            10
 #define                QUEEN           11
 #define                KING            12
-#define                EMPTY           13
 
 #define                VAL(c)          ( (c) < 9 ? (c)+1 : 10 )    /* val of rank */
 
 
 
 #define                VAL(c)          ( (c) < 9 ? (c)+1 : 10 )    /* val of rank */
 
 
-#ifndef TRUE
-#      define          TRUE            1
-#      define          FALSE           0
-#endif
+#define                TRUE            1
+#define                FALSE           0
 
 typedef                struct  {
                        int             rank;
 
 typedef                struct  {
                        int             rank;