XenevaOS
Loading...
Searching...
No Matches
inttypes.h
Go to the documentation of this file.
1
32#ifndef __INTTYPES_H__
33#define __INTTYPES_H__
34
35#include <stdint.h>
36#include <stddef.h>
37
38#define PRIi8 "i"
39#define PRIi16 "i"
40#define PRIi32 "i"
41#define PRIi64 "li"
42
43#define PRIx8 "x"
44#define PRIx16 "x"
45#define PRIx32 "x"
46#define PRIx64 "lx"
47
48#define PRIu8 "u"
49#define PRIu16 "u"
50#define PRIu32 "u"
51#define PRIu64 "lu"
52
53#define PRId8 "d"
54#define PRId16 "d"
55#define PRId32 "d"
56#define PRId64 "ld"
57
58#endif