diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2026-05-26 23:43:55 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2026-05-26 23:43:55 +0530 |
| commit | f5c67c1410c1f9af5da99d2ea02192c21f8abc08 (patch) | |
| tree | a830268b20a1b5bd828c3b88d518140f8e159cae /src/search/moves.c | |
| parent | ad32fc54b2869c0bbedcabea6274b0e3732ec893 (diff) | |
adding move marker
Diffstat (limited to 'src/search/moves.c')
| -rw-r--r-- | src/search/moves.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/search/moves.c b/src/search/moves.c index 7089886..c0cdb4e 100644 --- a/src/search/moves.c +++ b/src/search/moves.c @@ -2,6 +2,10 @@ #include <assert.h> #include <stdlib.h> +void position_make_move(position_t* position, move_t* move) { + +} + moves_t moves_init() { return moves_init_wcapacity(16); } |
