From 3c540db464f4034d0a393b076c79a26851f68f47 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Mon, 6 Jul 2026 23:39:55 +0530 Subject: removed unnescessary stuff + ipc with shared memory + somehow the build is faster? --- src/fen.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/fen.h (limited to 'src/fen.h') diff --git a/src/fen.h b/src/fen.h new file mode 100644 index 0000000..d45240e --- /dev/null +++ b/src/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 -- cgit v1.2.3