Are types like uint32, int32, uint64, int64 defined in any stdlib header?

前端 未结 4 708
误落风尘
误落风尘 2020-12-07 19:47

I often see source code using types like uint32, uint64 and I wonder if they should be defined by the programmer in the application code or if they are defined in a standard

4条回答
  •  时光取名叫无心
    2020-12-07 20:12

    The questioner actually asked about int16 (etc) rather than (ugly) int16_t (etc).

    There are no standard headers - nor any in Linux's /usr/include/ folder that define them without the "_t".

提交回复
热议问题