Home | History | Annotate | Download | only in cribbage

Lines Matching refs:hand

154  *	Print a hand of n cards
169 * reads a card, supposedly in hand, accepting unambigous brief
173 infrom(const CARD hand[], int n, const char *prompt)
185 if (!is_one(crd, hand, n))
186 msg("That's not in your hand");
189 if (hand[i].rank == crd.rank &&
190 hand[i].suit == crd.suit)
201 if (hand[i].rank == crd.rank)
204 msg("No such rank in your hand");
207 if (hand[j].rank == crd.rank)