File: fen.h

package info (click to toggle)
polyglot 2.0.4-2
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 1,280 kB
  • sloc: ansic: 10,428; sh: 3,711; makefile: 18
file content (24 lines) | stat: -rw-r--r-- 340 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

// fen.h

#ifndef FEN_H
#define FEN_H

// includes

#include "board.h"
#include "util.h"

// "constants"

extern const char * StartFen;

// functions

extern bool board_from_fen (board_t * board, const char string[]);
extern bool board_to_fen   (const board_t * board, char string[], int size);

#endif // !defined FEN_H

// end of fen.h