rust/library/core/src/ffi/c_uint.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
301 B
Markdown
Raw Normal View History

2017-12-22 21:43:09 -05:00
Equivalent to C's `unsigned int` type.
2018-02-06 09:26:15 -06:00
This type will almost always be [`u32`], but may differ on some esoteric systems. The C standard technically only requires that this type be an unsigned integer with the same size as an [`int`]; some systems define it as a [`u16`], for example.
2017-12-22 21:43:09 -05:00
[`int`]: c_int