From 203bce4aa00dfdfd58f65709ec824434f16e34c6 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Wed, 13 Dec 2023 00:35:48 +0100 Subject: Reformatted structs --- FICS/playerdb.h | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'FICS/playerdb.h') diff --git a/FICS/playerdb.h b/FICS/playerdb.h index 784997f..50376c4 100644 --- a/FICS/playerdb.h +++ b/FICS/playerdb.h @@ -78,18 +78,19 @@ typedef struct _statistics { #define PEND_FROM 1 typedef struct _pending { - int type; - int whoto; - int whofrom; - int param1, param2, param3, param4, param5, param6; - char char1[50], char2[50]; + int type; + int whoto; + int whofrom; + int param1, param2, param3, param4, param5, param6; + char char1[50]; + char char2[50]; } pending; typedef struct _simul_info_t { - int numBoards; - int onBoard; - int results[MAX_SIMUL]; - int boards[MAX_SIMUL]; + int numBoards; + int onBoard; + int results[MAX_SIMUL]; + int boards[MAX_SIMUL]; } simul_info_t; typedef struct _player { -- cgit v1.2.3