~ubuntu-branches/ubuntu/trusty/polyglot/trusty

« back to all changes in this revision

Viewing changes to fen.h

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Korff
  • Date: 2005-10-09 21:56:20 UTC
  • Revision ID: james.westby@ubuntu.com-20051009215620-dcuqynujzvmiglpj
Tags: upstream-1.3
ImportĀ upstreamĀ versionĀ 1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
// fen.h
 
3
 
 
4
#ifndef FEN_H
 
5
#define FEN_H
 
6
 
 
7
// includes
 
8
 
 
9
#include "board.h"
 
10
#include "util.h"
 
11
 
 
12
// "constants"
 
13
 
 
14
extern const char * StartFen;
 
15
 
 
16
// functions
 
17
 
 
18
extern bool board_from_fen (board_t *board, const char string[]);
 
19
extern bool board_to_fen   (const board_t *board, char string[], int size);
 
20
 
 
21
#endif // !defined FEN_H
 
22
 
 
23
// end of fen.h
 
24