diff options
Diffstat (limited to 'include/fen.h')
| -rw-r--r-- | include/fen.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/fen.h b/include/fen.h new file mode 100644 index 0000000..d45240e --- /dev/null +++ b/include/fen.h @@ -0,0 +1,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 |
