# HG changeset patch # User Matti Hamalainen # Date 1451168085 -7200 # Node ID 6bbe11ae6bf51d30318e7cc88a148e182436cc11 # Parent 0d01efc3c8032aa0d0ebce028548437913236d3f Cleanup. diff -r 0d01efc3c803 -r 6bbe11ae6bf5 sidinfo.c --- a/sidinfo.c Sun Dec 27 00:03:08 2015 +0200 +++ b/sidinfo.c Sun Dec 27 00:14:45 2015 +0200 @@ -46,6 +46,21 @@ typedef struct { + int cmd; + char *str; + char chr; +} PSFStackItem; + + +typedef struct +{ + int nitems, nallocated; + PSFStackItem *items; +} PSFStack; + + +typedef struct +{ uint32_t flag; char *name; char *lname; @@ -80,21 +95,6 @@ static const int noptPSFlags = sizeof(optPSFlags) / sizeof(optPSFlags[0]); -typedef struct -{ - int cmd; - char *str; - char chr; -} PSFStackItem; - - -typedef struct -{ - int nitems, nallocated; - PSFStackItem *items; -} PSFStack; - - // Option variables BOOL optParsable = FALSE, optNoNamePrefix = FALSE,