This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Support for C99 union and struct initialization ?

Hi all,

It seems that the 5.x cgtools for C2000 do not support C99 struct and union initialization like

union {
      char birthday[9];
      int age;
      float weight;
      } people = { .age = 14 };

This is quite handy as you do not have to initialize the whole struct/union.

I just want to get this confirmed and ask if there are plans to support this C99 feature!?