Great blog post. Using _BitInt typedefs for integers is a good option for anyone starting a fresh c project. It has worked well for me so far. _BitInt integers don’t promote to signed automatically like regular integers in c
That makes me worry that you code actually has more issues because with small _BitInt you would run into signed overflow more often.
That makes me worry that you code actually has more issues because with small _BitInt you would run into signed overflow more often.