Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I use C types (uint8_t/.../uint64_t) or (u_int8_t/.../u_int64_t)?

Tags:

c++

c

My GNU-Linux platform (debian stretch) has the C types u_int8_t, u_int16_t, u_int32_t and u_int64_t defined in the file sys/types.h while uint8_t, uint16_t, uint32_t and uint64_t are defined in stdint.h. I have found these types useful in the course of practicing X86-64 assembly language and interacting with C. Is there any reason why I should prefer one header file over the other (be it 'best practice', portability etc.)?. Is the answer any different for C++?

like image 907
Sven Williamson Avatar asked Mar 23 '17 14:03

Sven Williamson


1 Answers

stdint.h is standard C, which maps to cstdint in standard C++.

sys/types.h is not portable C.

like image 183
Bathsheba Avatar answered Sep 20 '22 15:09

Bathsheba