I was wondering what is the difference between uint32_t
and uint32
, and when I looked in the header files it had this:
types.h:
/** @brief 32-bit unsigned integer. */
typedef unsigned int uint32;
stdint.h:
typedef unsigned uint32_t;
This only leads to more questions: What is the difference between
unsigned varName;
and
unsigned int varName;
?
I am using MinGW.