From: Kevin Worth Date: Mon, 29 Jan 2007 18:02:43 +0000 (-0500) Subject: Removed extra card_compare X-Git-Url: https://git.cworth.org/git?p=kub;a=commitdiff_plain;h=092aee5ea3be9390f5cae49ebac86383218720bd Removed extra card_compare --- diff --git a/kub.c b/kub.c index 638fb12..69c3d03 100644 --- a/kub.c +++ b/kub.c @@ -75,12 +75,6 @@ static void player_init(player_t *player) } -static int card_compare(card_t *card_one, card_t *card_two) -{ - return card_one->number - card_two->number; -} - - /* If card_one < card_two, then return value will be negative if they are equal, 0 will be returned, if card_one > card_two, then return value will be positive */