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
39#define PRIi8 "i"
40#define PRIi16 "i"
41#define PRIi32 "i"
42#define PRIi64 "li"
43
44#define PRIx8 "x"
45#define PRIx16 "x"
46#define PRIx32 "x"
47#define PRIx64 "lx"
48
49#define PRIu8 "u"
50#define PRIu16 "u"
51#define PRIu32 "u"
52#define PRIu64 "lu"
53
54#define PRId8 "d"
55#define PRId16 "d"
56#define PRId32 "d"
57#define PRId64 "ld"
58
59#endif
60