aboutsummaryrefslogtreecommitdiff
path: root/include/inttypes.h
blob: bc8dea0630cc5845725ad0fb1316899e3b2d9eb1c013b37514a4a74cfbf60224 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

/*
 * C99 inttypes.h file.
 *
 * Copyright © 2022-2026 Samuel Lidén Borell <samuel@kodafritt.se>
 *
 * SPDX-License-Identifier: EUPL-1.2+ OR LGPL-2.1-or-later
 */

#ifndef _DS9K_INTTYPES_H
#define _DS9K_INTTYPES_H

#define PRIu8  "u"
#define PRId8  "d"
#define PRIx8  "x"
#define PRIu16 "u"
#define PRId16 "d"
#define PRIx16 "x"
#define PRIu32 "u"
#define PRId32 "d"
#define PRIx32 "x"
#define PRIu64 "llu"
#define PRId64 "lld"
#define PRIx64 "llx"

#endif