From 2dce2a8a0ebd95e9e65d9d53206c4b2babc2af2f Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sat, 10 Sep 2022 19:13:02 +0200 Subject: Added fst_cube prototypes --- src/fst.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/fst.h (limited to 'src/fst.h') diff --git a/src/fst.h b/src/fst.h new file mode 100644 index 0000000..94f6c30 --- /dev/null +++ b/src/fst.h @@ -0,0 +1,12 @@ +#ifndef FST_H +#define FST_H + +#include "coord.h" + +FstCube cube_to_fst(Cube *cube); +FstCube fst_inverse(FstCube fst); +FstCube fst_move(Move m, FstCube fst); +void fst_to_cube(FstCube fst, Cube *cube); + +#endif + -- cgit v1.3