1 // Copyright 2016 The Fuchsia Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #pragma once 6 7 #include <stdint.h> 8 9 #define PRId8 "d" 10 #define PRId16 "d" 11 #define PRId32 "d" 12 13 #define PRIu8 "u" 14 #define PRIu16 "u" 15 #define PRIu32 "u" 16 17 #define PRIx8 "x" 18 #define PRIx16 "x" 19 #define PRIx32 "x" 20 21 #ifdef __clang__ 22 #define PRIx64 "llx" 23 #else 24 #define PRIx64 "lx" 25 #endif 26