Skip to content

Latest commit

History

History
17 lines (14 loc) 路 254 Bytes

inttypes.md

File metadata and controls

17 lines (14 loc) 路 254 Bytes

Guide to using Integer Types

If integer width does not matter (most cases):

int, unsigned int

If integer width matters:

(u)intXX_t

For machine width integers (in memory management):

size_t