blob: 0697c6ddf25876d78af35c311c76842bce68a723 [file] [log] [blame]
agl@chromium.orgd366e2c2009-06-30 02:58:25 +09001// Copyright (c) 2009 The Chromium 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#ifndef BASE_FORMAT_MACROS_H_
6#define BASE_FORMAT_MACROS_H_
7
evan@chromium.org3f6b2602009-11-20 15:53:28 +09008// This file defines the format macros for some integer types.
9
10// To print a 64-bit value in a portable way:
agl@chromium.orgd366e2c2009-06-30 02:58:25 +090011// int64_t value;
12// printf("xyz:%" PRId64, value);
evan@chromium.org3f6b2602009-11-20 15:53:28 +090013// The "d" in the macro corresponds to %d; you can also use PRIu64 etc.
agl@chromium.orgd366e2c2009-06-30 02:58:25 +090014//
15// For wide strings, prepend "Wide" to the macro:
16// int64_t value;
17// StringPrintf(L"xyz: %" WidePRId64, value);
evan@chromium.org3f6b2602009-11-20 15:53:28 +090018//
19// To print a size_t value in a portable way:
20// size_t size;
21// printf("xyz: %" PRIuS, size);
22// The "u" in the macro corresponds to %u, and S is for "size".
agl@chromium.orgd366e2c2009-06-30 02:58:25 +090023
avia6a6a682015-12-27 07:15:14 +090024#include <stddef.h>
25#include <stdint.h>
26
agl@chromium.orgd366e2c2009-06-30 02:58:25 +090027#include "build/build_config.h"
28
chcunningham6a103f22015-05-11 07:56:00 +090029#if defined(OS_POSIX) && (defined(_INTTYPES_H) || defined(_INTTYPES_H_)) && \
30 !defined(PRId64)
agl@chromium.orgd366e2c2009-06-30 02:58:25 +090031#error "inttypes.h has already been included before this header file, but "
32#error "without __STDC_FORMAT_MACROS defined."
33#endif
34
chcunningham6a103f22015-05-11 07:56:00 +090035#if defined(OS_POSIX) && !defined(__STDC_FORMAT_MACROS)
agl@chromium.orgd366e2c2009-06-30 02:58:25 +090036#define __STDC_FORMAT_MACROS
37#endif
38
39#include <inttypes.h>
40
chcunningham6a103f22015-05-11 07:56:00 +090041#if defined(OS_POSIX)
42
agl@chromium.orgd366e2c2009-06-30 02:58:25 +090043// GCC will concatenate wide and narrow strings correctly, so nothing needs to
44// be done here.
45#define WidePRId64 PRId64
46#define WidePRIu64 PRIu64
47#define WidePRIx64 PRIx64
48
gregoryd@google.comfad1a462010-02-26 02:20:07 +090049#if !defined(PRIuS)
evan@chromium.org3f6b2602009-11-20 15:53:28 +090050#define PRIuS "zu"
gregoryd@google.comfad1a462010-02-26 02:20:07 +090051#endif
evan@chromium.org3f6b2602009-11-20 15:53:28 +090052
sdefresne@chromium.orgc9dcae62014-03-11 05:16:34 +090053// The size of NSInteger and NSUInteger varies between 32-bit and 64-bit
54// architectures and Apple does not provides standard format macros and
55// recommends casting. This has many drawbacks, so instead define macros
56// for formatting those types.
57#if defined(OS_MACOSX)
58#if defined(ARCH_CPU_64_BITS)
59#if !defined(PRIdNS)
60#define PRIdNS "ld"
61#endif
62#if !defined(PRIuNS)
63#define PRIuNS "lu"
64#endif
65#if !defined(PRIxNS)
66#define PRIxNS "lx"
67#endif
68#else // defined(ARCH_CPU_64_BITS)
69#if !defined(PRIdNS)
70#define PRIdNS "d"
71#endif
72#if !defined(PRIuNS)
73#define PRIuNS "u"
74#endif
75#if !defined(PRIxNS)
76#define PRIxNS "x"
77#endif
78#endif
79#endif // defined(OS_MACOSX)
80
agl@chromium.orgd366e2c2009-06-30 02:58:25 +090081#else // OS_WIN
82
chcunningham6a103f22015-05-11 07:56:00 +090083#if !defined(PRId64) || !defined(PRIu64) || !defined(PRIx64)
84#error "inttypes.h provided by win toolchain should define these."
gregoryd@google.comddf71512009-09-29 09:33:46 +090085#endif
agl@chromium.orgd366e2c2009-06-30 02:58:25 +090086
87#define WidePRId64 L"I64d"
88#define WidePRIu64 L"I64u"
89#define WidePRIx64 L"I64x"
90
gregoryd@google.comfad1a462010-02-26 02:20:07 +090091#if !defined(PRIuS)
evan@chromium.org3f6b2602009-11-20 15:53:28 +090092#define PRIuS "Iu"
gregoryd@google.comfad1a462010-02-26 02:20:07 +090093#endif
evan@chromium.org3f6b2602009-11-20 15:53:28 +090094
agl@chromium.orgd366e2c2009-06-30 02:58:25 +090095#endif
96
dpolukhin@chromium.org21b228d2010-09-16 16:59:27 +090097#endif // BASE_FORMAT_MACROS_H_