boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

inttypes.h (502B)


      1 #ifndef _INTTYPES_H
      2 #define _INTTYPES_H
      3 #include <stdint.h>
      4 #define PRId8   "d"
      5 #define PRId16  "d"
      6 #define PRId32  "d"
      7 #define PRId64  "lld"
      8 #define PRIu8   "u"
      9 #define PRIu16  "u"
     10 #define PRIu32  "u"
     11 #define PRIu64  "llu"
     12 #define PRIx8   "x"
     13 #define PRIx16  "x"
     14 #define PRIx32  "x"
     15 #define PRIx64  "llx"
     16 #define PRIX8   "X"
     17 #define PRIX16  "X"
     18 #define PRIX32  "X"
     19 #define PRIX64  "llX"
     20 #define PRIdPTR "ld"
     21 #define PRIuPTR "lu"
     22 #define PRIxPTR "lx"
     23 #define PRIiMAX "lld"
     24 #define PRIuMAX "llu"
     25 #endif