PipelineC icon indicating copy to clipboard operation
PipelineC copied to clipboard

Structs must use typedef tag_name == struct_alias for struct definitions

Open JulianKemmerer opened this issue 1 year ago • 0 comments

Structs must use tag_name == struct_alias in struct definitions...

typedef struct tag_name {
  type member1;
  type member2;
} struct_alias;

Otherwise you will get parsing errors as if type wasn't defined

JulianKemmerer avatar Oct 21 '22 23:10 JulianKemmerer