1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:47:35 +00:00

LibC: Add some missing macros to inttypes.h

This commit is contained in:
Andreas Kling 2020-02-20 06:51:16 +01:00
parent 124c588f81
commit 4ddae2c069

View file

@ -37,6 +37,10 @@
#define PRIi32 "d" #define PRIi32 "d"
#define PRIi64 "lld" #define PRIi64 "lld"
#define PRIu8 "u" #define PRIu8 "u"
#define PRIo8 "o"
#define PRIo16 "o"
#define PRIo32 "o"
#define PRIo64 "llo"
#define PRIu16 "u" #define PRIu16 "u"
#define PRIu32 "u" #define PRIu32 "u"
#define PRIu64 "llu" #define PRIu64 "llu"
@ -53,3 +57,11 @@
#define PRIdPTR __PRIPTR_PREFIX "d" #define PRIdPTR __PRIPTR_PREFIX "d"
#define PRIiPTR __PRIPTR_PREFIX "i" #define PRIiPTR __PRIPTR_PREFIX "i"
#define PRIXPTR __PRIPTR_PREFIX "X" #define PRIXPTR __PRIPTR_PREFIX "X"
#define PRIdMAX __PRI64_PREFIX "d"
#define PRIoMAX __PRI64_PREFIX "o"
#define PRIuMAX __PRI64_PREFIX "u"
#define SCNdMAX __PRI64_PREFIX "d"
#define SCNoMAX __PRI64_PREFIX "o"
#define SCNuMAX __PRI64_PREFIX "u"