initial files

This commit is contained in:
2021-10-27 16:09:56 +02:00
commit 264459dc0f
13 changed files with 1468 additions and 0 deletions

8
src/fen.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef FEN_H
#define FEN_H
#include "position.h"
POS *fen2pos(POS *pos, char *fen);
#endif