in reply to Looking at a SV in C
Cool & useful.
One question: any particular reason for:
struct pMG; typedef struct pMG pMG; struct pMG { .... };
Rather than
struct pMG { .... }; typedef struct pMG pMG;
Or just:
typedef struct pMG { .... } pMG;
Or even just:
typedef struct { .... } pMG;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Looking at a SV in C
by bulk88 (Priest) on Mar 22, 2012 at 19:29 UTC | |
by BrowserUk (Patriarch) on Mar 22, 2012 at 20:07 UTC |