Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does uint32_t stand for?

Tags:

c

I expect uint32 means "unsigned 32-bit integer".

What does the t stand for?

like image 672
Randomblue Avatar asked Mar 12 '12 11:03

Randomblue


2 Answers

The suffix _tdenotes a type name. For example, size_t is the type for size.

Another popular line of thought regards it as a convention for naming type definitions.

like image 93
Alok Save Avatar answered Sep 22 '22 08:09

Alok Save


uint32_t = unsigned integer 32-bit type.

like image 29
George Skoptsov Avatar answered Sep 25 '22 08:09

George Skoptsov