miniOS
x86_64 hobby kernel with SMP, VFS, and POSIX process model
Loading...
Searching...
No Matches
inttypes.h
Go to the documentation of this file.
1
#pragma once
2
#include <stdint.h>
3
4
#define PRId8 "d"
5
#define PRId16 "d"
6
#define PRId32 "d"
7
#define PRId64 "ld"
8
9
#define PRIu8 "u"
10
#define PRIu16 "u"
11
#define PRIu32 "u"
12
#define PRIu64 "lu"
13
14
#define PRIx8 "x"
15
#define PRIx16 "x"
16
#define PRIx32 "x"
17
#define PRIx64 "lx"
18
19
#define PRIX8 "X"
20
#define PRIX16 "X"
21
#define PRIX32 "X"
22
#define PRIX64 "lX"
23
24
#define PRIuPTR "lu"
25
#define PRIdPTR "ld"
26
#define PRIxPTR "lx"
include
inttypes.h
Generated by
1.16.1