diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2022-09-10 19:13:02 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2022-09-10 19:13:02 +0200 |
| commit | 2dce2a8a0ebd95e9e65d9d53206c4b2babc2af2f (patch) | |
| tree | 0310e3458cee1d1bef6b5e9e656c9694d3bb212a /src/fst.h | |
| parent | 86dd040a2d2f06e8355f5441fb1da5ed59ecc399 (diff) | |
| download | nissy-2dce2a8a0ebd95e9e65d9d53206c4b2babc2af2f.tar.gz nissy-2dce2a8a0ebd95e9e65d9d53206c4b2babc2af2f.zip | |
Added fst_cube prototypes
Diffstat (limited to '')
| -rw-r--r-- | src/fst.h | 12 |
1 files changed, 12 insertions, 0 deletions
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 @@ | |||
| 1 | #ifndef FST_H | ||
| 2 | #define FST_H | ||
| 3 | |||
| 4 | #include "coord.h" | ||
| 5 | |||
| 6 | FstCube cube_to_fst(Cube *cube); | ||
| 7 | FstCube fst_inverse(FstCube fst); | ||
| 8 | FstCube fst_move(Move m, FstCube fst); | ||
| 9 | void fst_to_cube(FstCube fst, Cube *cube); | ||
| 10 | |||
| 11 | #endif | ||
| 12 | |||
