| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #ifndef WEBRTC_BASE_FORMAT_MACROS_H_ | 11 #ifndef WEBRTC_RTC_BASE_FORMAT_MACROS_H_ |
| 12 #define WEBRTC_BASE_FORMAT_MACROS_H_ | 12 #define WEBRTC_RTC_BASE_FORMAT_MACROS_H_ |
| 13 | 13 |
| 14 // This file defines the format macros for some integer types and is derived | 14 // This file defines the format macros for some integer types and is derived |
| 15 // from Chromium's base/format_macros.h. | 15 // from Chromium's base/format_macros.h. |
| 16 | 16 |
| 17 // To print a 64-bit value in a portable way: | 17 // To print a 64-bit value in a portable way: |
| 18 // int64_t value; | 18 // int64_t value; |
| 19 // printf("xyz:%" PRId64, value); | 19 // printf("xyz:%" PRId64, value); |
| 20 // The "d" in the macro corresponds to %d; you can also use PRIu64 etc. | 20 // The "d" in the macro corresponds to %d; you can also use PRIu64 etc. |
| 21 // | 21 // |
| 22 // To print a size_t value in a portable way: | 22 // To print a size_t value in a portable way: |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 #if !defined(PRIx64) | 86 #if !defined(PRIx64) |
| 87 #define PRIx64 "I64x" | 87 #define PRIx64 "I64x" |
| 88 #endif | 88 #endif |
| 89 | 89 |
| 90 #if !defined(PRIuS) | 90 #if !defined(PRIuS) |
| 91 #define PRIuS "Iu" | 91 #define PRIuS "Iu" |
| 92 #endif | 92 #endif |
| 93 | 93 |
| 94 #endif | 94 #endif |
| 95 | 95 |
| 96 #endif // WEBRTC_BASE_FORMAT_MACROS_H_ | 96 #endif // WEBRTC_RTC_BASE_FORMAT_MACROS_H_ |
| OLD | NEW |