>and how to handle format specifiers for it is part of those discussions, so we are considering some changes in this area.
Please, please, please pick short and descriptive format specifiers, like %[suf]\d+, ie
s64 v=somenumber;
printf("%s64\n", v);
_ExtInt(N) and PRIx64 etc look absolutely horrid. u?int\d+_t are also really bad, it would be great to have just [suf]\d+ as types, where \d+ is 8, 16, 32, 64 for [us] and 32 and 64 for f.
>what do you have in mind there?
Say like VLAs but structures with members that are dynamically defined and used.