Lines Matching defs:move
98 int ch, move;
125 move = usermove();
126 if (!comphand[move]) {
127 if (gofish(move, USER, userhand))
130 goodmove(USER, move, userhand, comphand);
135 move = compmove();
136 if (!userhand[move]) {
137 if (!gofish(move, COMPUTER, comphand))
140 goodmove(COMPUTER, move, comphand, userhand);
303 goodmove(int player, int move, int *hand, int *opphand)
307 opphand[move], cards[move], opphand[move] == 1 ? "": "'s");
309 hand[move] += opphand[move];
310 opphand[move] = 0;
312 if (hand[move] == CARDS) {
314 (void)printf("made a book of %s's!\n", cards[move]);