From b708eef95c98ba9215f5eef2c2911e4f87ebc7a5 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Sun, 18 May 2025 13:21:27 +0000 Subject: Reorder gol struct members Signed-off-by: Laurent Bercot --- src/include/skalibs/gol.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include') diff --git a/src/include/skalibs/gol.h b/src/include/skalibs/gol.h index 8a9d94c..746ed97 100644 --- a/src/include/skalibs/gol.h +++ b/src/include/skalibs/gol.h @@ -12,18 +12,18 @@ typedef struct gol_bool_s gol_bool, *gol_bool_ref ; struct gol_bool_s { + uint64_t mask ; char const *lo ; uint8_t so : 7 ; uint8_t set : 1 ; - uint64_t mask ; } ; typedef struct gol_arg_s gol_arg, *gol_arg_ref ; struct gol_arg_s { char const *lo ; - uint8_t so : 7 ; unsigned int i ; + uint8_t so : 7 ; } ; extern int gol (char const *const *, unsigned int, gol_bool const *, unsigned int, gol_arg const *a, unsigned int, uint64_t *, char const **, int *) ; -- cgit v1.3.1