Hi,

I would like to introduce a new type for something like that

Code:
char name[32];
to avoid inconsistence over the project (in case the same array size is needed somethere else)

Code:
typedef NAME_T char[32] // doesn't work
NAME_T name;
Is this possible somehow for arrays?

Thank you!