diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 00:35:48 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 00:35:48 +0100 |
commit | 203bce4aa00dfdfd58f65709ec824434f16e34c6 (patch) | |
tree | 0774862808786ff6c4ba74cae5c1f9401eadb84c /FICS/playerdb.h | |
parent | 87d084db8eb055cf4097b8ca980096ba30290202 (diff) |
Reformatted structs
Diffstat (limited to 'FICS/playerdb.h')
-rw-r--r-- | FICS/playerdb.h | 19 |
1 files changed, 10 insertions, 9 deletions
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 { |