Accessing C99 stdint.h in MS Visual Studio
Visual Studio users seeking to utilize the C99 stdint.h header may be surprised to find its absence in versions 2003 onwards. To remedy this, they can retrieve a compatible version from trusted sources online.
Downloading a MS-Compatible stdint.h
For a Microsoft-specific implementation, users can obtain the header file from:
https://github.com/mattn/gntp-send/blob/master/include/msinttypes/stdint.h
Obtaining a Portable stdint.h
Alternatively, a portable version can be downloaded from:
http://www.azillionmonkeys.com/qed/pstdint.h
Additional Resources
The Software Ramblings blog provides insightful information regarding the availability of these headers.
In addition, an archived copy of the Public Domain version of stdint.h, originally mentioned by Michael Burr, is accessible here:
[Archived Public Domain stdint.h Header]
An updated version of the header can be located within the Android source tree for libusb_aah.
The above is the detailed content of How Can I Access the C99 stdint.h Header in Microsoft Visual Studio?. For more information, please follow other related articles on the PHP Chinese website!