Symbol: cardtype
games/canfield/canfield/canfield.c
1057
struct cardtype *ptr;
games/canfield/canfield/canfield.c
1161
simpletableau(struct cardtype **cp, int des)
games/canfield/canfield/canfield.c
1196
struct cardtype *tempcard;
games/canfield/canfield/canfield.c
1221
struct cardtype *temp;
games/canfield/canfield/canfield.c
1246
rankhigher(struct cardtype *cp, int let)
games/canfield/canfield/canfield.c
1263
samesuit(struct cardtype *cp, int let)
games/canfield/canfield/canfield.c
1275
movetofound(struct cardtype **cp, int source)
games/canfield/canfield/canfield.c
134
struct cardtype *next;
games/canfield/canfield/canfield.c
137
#define NIL ((struct cardtype *) -1)
games/canfield/canfield/canfield.c
139
struct cardtype *deck[decksize];
games/canfield/canfield/canfield.c
140
struct cardtype cards[decksize];
games/canfield/canfield/canfield.c
141
struct cardtype *bottom[4], *found[4], *tableau[4];
games/canfield/canfield/canfield.c
142
struct cardtype *talon, *hand, *stock, *basecard;
games/canfield/canfield/canfield.c
196
static bool diffcolor(struct cardtype *, struct cardtype *);
games/canfield/canfield/canfield.c
199
static void fndbase(struct cardtype **, int, int);
games/canfield/canfield/canfield.c
202
static void initdeck(struct cardtype *[]);
games/canfield/canfield/canfield.c
208
static void movetofound(struct cardtype **, int);
games/canfield/canfield/canfield.c
210
static bool notempty(struct cardtype *);
games/canfield/canfield/canfield.c
213
static void printcard(int, int, struct cardtype *);
games/canfield/canfield/canfield.c
214
static void printrank(int, int, struct cardtype *, bool);
games/canfield/canfield/canfield.c
217
static bool rankhigher(struct cardtype *, int);
games/canfield/canfield/canfield.c
218
static bool ranklower(struct cardtype *, struct cardtype *);
games/canfield/canfield/canfield.c
220
static bool samesuit(struct cardtype *, int);
games/canfield/canfield/canfield.c
223
static void shuffle(struct cardtype *[]);
games/canfield/canfield/canfield.c
224
static void simpletableau(struct cardtype **, int);
games/canfield/canfield/canfield.c
227
static bool tabok(struct cardtype *, int);
games/canfield/canfield/canfield.c
230
static void transit(struct cardtype **, struct cardtype **);
games/canfield/canfield/canfield.c
449
struct cardtype *ptr;
games/canfield/canfield/canfield.c
503
initdeck(struct cardtype *ideck[])
games/canfield/canfield/canfield.c
528
shuffle(struct cardtype *ideck[])
games/canfield/canfield/canfield.c
531
struct cardtype *temp;
games/canfield/canfield/canfield.c
561
printrank(int a, int b, struct cardtype *cp, bool inverse)
games/canfield/canfield/canfield.c
593
printcard(int a, int b, struct cardtype *cp)
games/canfield/canfield/canfield.c
618
transit(struct cardtype **source, struct cardtype **dest)
games/canfield/canfield/canfield.c
620
struct cardtype *temp;
games/canfield/canfield/canfield.c
634
fndbase(struct cardtype **cp, int column, int row)
games/canfield/canfield/canfield.c
804
notempty(struct cardtype *cp)
games/canfield/canfield/canfield.c
819
ranklower(struct cardtype *cp1, struct cardtype *cp2)
games/canfield/canfield/canfield.c
836
diffcolor(struct cardtype *cp1, struct cardtype *cp2)
games/canfield/canfield/canfield.c
848
tabok(struct cardtype *cp, int des)
games/canfield/canfield/canfield.c
957
struct cardtype *ptr;