summaryrefslogtreecommitdiff
path: root/src/engine/fen.h
blob: d45240ebedab0ccc1c067b15173eba4be42d8716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef FEN_H
#define FEN_H

#include "bitboard.h"

struct fen_load {
  bool failed;
  position_t position;
};
struct fen_load load_fen(const char* fen);

#endif // FEN_H