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

« back to all changes in this revision

Viewing changes to san.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
// san.h
 
3
 
 
4
#ifndef SAN_H
 
5
#define SAN_H
 
6
 
 
7
// includes
 
8
 
 
9
#include "board.h"
 
10
#include "util.h"
 
11
 
 
12
// functions
 
13
 
 
14
extern bool move_to_san         (int move, const board_t * board, char string[], int size);
 
15
extern int  move_from_san       (const char string[], const board_t * board);
 
16
 
 
17
extern int  move_from_san_debug (const char string[], const board_t * board);
 
18
 
 
19
#endif // !defined SAN_H
 
20
 
 
21
// end of san.h
 
22