~ubuntu-branches/ubuntu/utopic/fruit/utopic

« back to all changes in this revision

Viewing changes to src/eval.h

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Korff
  • Date: 2005-10-07 19:40:10 UTC
  • Revision ID: james.westby@ubuntu.com-20051007194010-a99a9utegtl89htk
Tags: upstream-2.1
ImportĀ upstreamĀ versionĀ 2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
// eval.h
 
3
 
 
4
#ifndef EVAL_H
 
5
#define EVAL_H
 
6
 
 
7
// includes
 
8
 
 
9
#include "board.h"
 
10
#include "util.h"
 
11
 
 
12
// functions
 
13
 
 
14
extern void eval_init ();
 
15
 
 
16
extern int  eval      (const board_t * board);
 
17
 
 
18
#endif // !defined EVAL_H
 
19
 
 
20
// end of eval.h
 
21