inttypes.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: 2015 Martine Lenders <mlenders@inf.fu-berlin.de>
3  * SPDX-License-Identifier: LGPL-2.1-only
4  */
5 
6 #pragma once
7 
18 #include_next <inttypes.h>
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24 #define PRIo64 "llo"
25 #define PRIx64 "llx"
26 #define PRIu64 "llu"
27 #define PRId64 "lld"
29 #ifdef __cplusplus
30 }
31 #endif
32