~ubuntu-branches/ubuntu/natty/dealer/natty

« back to all changes in this revision

Viewing changes to c4.h

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2005-09-07 23:32:20 UTC
  • Revision ID: james.westby@ubuntu.com-20050907233220-e7bsghnrwg1ncye4
Tags: upstream-0.20040530
ImportĀ upstreamĀ versionĀ 0.20040530

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef PNQ_CARD
 
2
#define PNQ_CARD
 
3
 
 
4
#ifdef __cplusplus
 
5
extern "C"
 
6
{
 
7
#endif
 
8
 
 
9
#define HAS_CARD2(s,r) HAS_CARD(curdeal, seat, (card) MAKECARD(s,r))
 
10
 
 
11
#ifdef __cplusplus
 
12
} /* -- extern "C" */
 
13
#endif
 
14
 
 
15
/* This macro is just an implementation detail - in c++ it would be
 
16
   an inline function. */
 
17
 
 
18
int suit_quality(  int , int  ) ;
 
19
int quality (int, int);
 
20
int eval_cccc( int ) ;
 
21
int cccc (int);
 
22
 
 
23
#endif /* PNQ_CARD */
 
24