This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Initialization of nested flexible array members


> Declare your stretchy-buffered struct this way:
>
> typedef struct
> {
>     char a;
>     char b;
>     int flexo[1024];
> } EnclosedStruct;
>
> Instead of "1024", use whatever largest possible size the struct could
> conceivably need to accommodate.

This is unfortunately not an option, since the code is designed to run on 
constraint embedded targets with 1K RAM at best... :)

Alex.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]