Hi,
For the most part, std::size_t coincidentally has the right size, but e.g. on WASM32, std::size_t is 32-bit while there are i64 hardware instructions for arithmetic. Every existing integer type (alias) has the wrong size, either by design or due to historical reasons.
I'm thus interested in standardizing a type alias in <stdint.h> that has the size. In P4444, we call that uint_multiprecision_t, but that's perhaps not universal enough. Names like "uint_maxfast_t" or "uint_word_t" come to mind.
What are your thoughts? Also, since I'm not in the C committee myself, is there anyone who is interested in championing a proposal on the WG14 side?
Yours
Jan