From 8a91354f7b94c669c77fe628a81f9bfe9f599ef0 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Mon, 14 Oct 2024 00:05:43 +0200 Subject: Interface changes, progress with python --- src/core/cube.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/cube.h') diff --git a/src/core/cube.h b/src/core/cube.h index a3c3e14..49d868c 100644 --- a/src/core/cube.h +++ b/src/core/cube.h @@ -4,7 +4,7 @@ STATIC bool isconsistent(cube_t); STATIC bool issolvable(cube_t); STATIC bool issolved(cube_t); STATIC bool iserror(cube_t); -STATIC void getcube_fix(int64_t *, int64_t *, int64_t *, int64_t *); +STATIC void getcube_fix(long long *, long long *, long long *, long long *); STATIC cube_t getcube(int64_t, int64_t, int64_t, int64_t); /* This is used only in tests, use SOLVED_CUBE directly everywhere else */ @@ -128,7 +128,7 @@ iserror(cube_t cube) } STATIC void -getcube_fix(int64_t *ep, int64_t *eo, int64_t *cp, int64_t *co) +getcube_fix(long long *ep, long long *eo, long long *cp, long long *co) { uint8_t e[12], c[8], coarr[8]; -- cgit v1.3