Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 2bb54e74e6dbbbfe00f09923014f5fe2 > files > 23

libpoker-eval-devel-135.0-1mdv2009.1.i586.rpm

/*
 * Copyright (C) 2002 Michael Maurer <mjmaurer@yahoo.com>
 *
 *  This package is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; version 2 dated June, 1991.
 *
 *  This package is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this package; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
 *  MA 02110-1301, USA.
 */
#ifndef __EVAL_JOKER_LOW8_H__
#define __EVAL_JOKER_LOW8_H__

#include "handval_low.h"
#include "deck_joker.h"
#include "inlines/eval_joker_low.h"

static inline LowHandVal 
JokerDeck_Lowball8_EVAL(JokerDeck_CardMask cards, int n_cards) {
  LowHandVal loval;
  loval = JokerDeck_Lowball_EVAL(cards, n_cards);
  if (loval <= LowHandVal_WORST_EIGHT)
    return loval;
  else 
    return LowHandVal_NOTHING;
}

#endif