Hacker News new | ask | show | jobs
by unsafecast 1264 days ago
> Technically, int32_t is bad in that way, but we are not fooled by it.

Meaning? On my system int32_t is directly typedefed to unsigned int, absolutely no hidden pointers or conversions.

1 comments

int32_t promotes to long, converts to unsigned, and truncates to short and char, all silently.