struct SomeStruct;
typedef struct SomeStruct SomeStruct;
The above works, but is there a simpler (or better) way?
struct SomeStruct;
typedef struct SomeStruct SomeStruct;
The above works, but is there a simpler (or better) way?
Turns out I don't need the first line. The second line works by itself.