h48

A prototype for an optimal Rubik's cube solver, work in progress.
git clone https://git.tronto.net/h48
Download | Log | Files | Refs | README | LICENSE

commit ee129a671620de49a5477b1e84bfcd110c522831
parent 17eda4dedb0d70c5a82edf77e9b3aaa1af5bfb19
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Sat, 12 Oct 2024 19:34:29 +0200

Trivial fixes to comments

Diffstat:
Msrc/nissy.h | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/nissy.h b/src/nissy.h @@ -3,10 +3,10 @@ This is libnissy (temporarily also known as h48), a Rubik's cube library. If you include this file, you should also use the following includes: -#include <inttypes> -#include <stdarg> -#include <stdbool> -#include <string> +#include <inttypes.h> +#include <stdarg.h> +#include <stdbool.h> +#include <string.h> All the functions return 0 or a positive integer in case of success and a negative integer in case of error, unless otherwise specified.