diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-20 22:42:12 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-20 22:42:12 +0100 |
commit | 60887153f4cc043c594d716d6cd9407ddf51e6c4 (patch) | |
tree | a8f267b37785c2b08bdb4397fcd56408c8b4f2b5 | |
parent | 4592c1c33a75a8fdbff554545e23a6108577e67f (diff) |
Reformatted struct
-rw-r--r-- | FICS/multicol.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/FICS/multicol.h b/FICS/multicol.h index e440416..72cd28a 100644 --- a/FICS/multicol.h +++ b/FICS/multicol.h @@ -25,11 +25,10 @@ #ifndef _MULTICOL_H #define _MULTICOL_H -typedef struct _multicol -{ - int arraySize; - int num; - char **strArray; +typedef struct _multicol { + int arraySize; + int num; + char** strArray; } multicol; extern int multicol_end(multicol *); |