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;
In reply to Re: Looking at a SV in C
by BrowserUk
in thread Looking at a SV in C
by bulk88
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |