2014-07-11 06:10:17 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2011-12-15 09:27:42 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2014-07-11 06:10:17 +04:00
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-12-15 09:27:42 +04:00
|
|
|
|
2015-01-07 08:41:15 +03:00
|
|
|
/* Implements the C99 <inttypes.h> interface. */
|
2011-12-15 09:27:42 +04:00
|
|
|
|
|
|
|
#ifndef mozilla_IntegerPrintfMacros_h_
|
|
|
|
#define mozilla_IntegerPrintfMacros_h_
|
|
|
|
|
2015-07-27 11:08:00 +03:00
|
|
|
/*
|
|
|
|
* These macros should not be used with the NSPR printf-like functions or their
|
2016-12-15 00:16:20 +03:00
|
|
|
* users. If you need to use NSPR's facilities, see the comment on
|
|
|
|
* supported formats at the top of nsprpub/pr/include/prprf.h.
|
2015-07-27 11:08:00 +03:00
|
|
|
*/
|
|
|
|
|
2011-12-15 09:27:42 +04:00
|
|
|
/*
|
2015-01-07 08:41:15 +03:00
|
|
|
* scanf is a footgun: if the input number exceeds the bounds of the target
|
|
|
|
* type, behavior is undefined (in the compiler sense: that is, this code
|
2011-12-15 09:27:42 +04:00
|
|
|
* could overwrite your hard drive with zeroes):
|
|
|
|
*
|
|
|
|
* uint8_t u;
|
|
|
|
* sscanf("256", "%" SCNu8, &u); // BAD
|
|
|
|
*
|
2015-01-07 08:41:15 +03:00
|
|
|
* For this reason, *never* use the SCN* macros provided by this header!
|
2011-12-15 09:27:42 +04:00
|
|
|
*/
|
|
|
|
|
2015-01-07 08:41:15 +03:00
|
|
|
#include <inttypes.h>
|
2011-12-15 09:27:42 +04:00
|
|
|
|
2014-05-13 09:27:14 +04:00
|
|
|
/*
|
|
|
|
* Fix up Android's broken [u]intptr_t inttype macros. Android's PRI*PTR
|
|
|
|
* macros are defined as "ld", but sizeof(long) is 8 and sizeof(intptr_t)
|
|
|
|
* is 4 on 32-bit Android. TestTypeTraits.cpp asserts that these new macro
|
|
|
|
* definitions match the actual type sizes seen at compile time.
|
|
|
|
*/
|
|
|
|
#if defined(ANDROID) && !defined(__LP64__)
|
|
|
|
# undef PRIdPTR /* intptr_t */
|
|
|
|
# define PRIdPTR "d" /* intptr_t */
|
|
|
|
# undef PRIiPTR /* intptr_t */
|
|
|
|
# define PRIiPTR "i" /* intptr_t */
|
|
|
|
# undef PRIoPTR /* uintptr_t */
|
|
|
|
# define PRIoPTR "o" /* uintptr_t */
|
|
|
|
# undef PRIuPTR /* uintptr_t */
|
|
|
|
# define PRIuPTR "u" /* uintptr_t */
|
|
|
|
# undef PRIxPTR /* uintptr_t */
|
|
|
|
# define PRIxPTR "x" /* uintptr_t */
|
|
|
|
# undef PRIXPTR /* uintptr_t */
|
|
|
|
# define PRIXPTR "X" /* uintptr_t */
|
|
|
|
#endif
|
|
|
|
|
2017-05-01 21:46:00 +03:00
|
|
|
/*
|
|
|
|
* Fix up Android's broken macros for [u]int_fastN_t. On ARM64, Android's
|
|
|
|
* PRI*FAST16/32 macros are defined as "d", but the types themselves are defined
|
|
|
|
* as long and unsigned long.
|
|
|
|
*/
|
|
|
|
#if defined(ANDROID) && defined(__LP64__)
|
|
|
|
# undef PRIdFAST16 /* int_fast16_t */
|
|
|
|
# define PRIdFAST16 PRId64 /* int_fast16_t */
|
|
|
|
# undef PRIiFAST16 /* int_fast16_t */
|
|
|
|
# define PRIiFAST16 PRIi64 /* int_fast16_t */
|
|
|
|
# undef PRIoFAST16 /* uint_fast16_t */
|
|
|
|
# define PRIoFAST16 PRIo64 /* uint_fast16_t */
|
|
|
|
# undef PRIuFAST16 /* uint_fast16_t */
|
|
|
|
# define PRIuFAST16 PRIu64 /* uint_fast16_t */
|
|
|
|
# undef PRIxFAST16 /* uint_fast16_t */
|
|
|
|
# define PRIxFAST16 PRIx64 /* uint_fast16_t */
|
|
|
|
# undef PRIXFAST16 /* uint_fast16_t */
|
|
|
|
# define PRIXFAST16 PRIX64 /* uint_fast16_t */
|
|
|
|
# undef PRIdFAST32 /* int_fast32_t */
|
|
|
|
# define PRIdFAST32 PRId64 /* int_fast32_t */
|
|
|
|
# undef PRIiFAST32 /* int_fast32_t */
|
|
|
|
# define PRIiFAST32 PRIi64 /* int_fast32_t */
|
|
|
|
# undef PRIoFAST32 /* uint_fast32_t */
|
|
|
|
# define PRIoFAST32 PRIo64 /* uint_fast32_t */
|
|
|
|
# undef PRIuFAST32 /* uint_fast32_t */
|
|
|
|
# define PRIuFAST32 PRIu64 /* uint_fast32_t */
|
|
|
|
# undef PRIxFAST32 /* uint_fast32_t */
|
|
|
|
# define PRIxFAST32 PRIx64 /* uint_fast32_t */
|
|
|
|
# undef PRIXFAST32 /* uint_fast32_t */
|
|
|
|
# define PRIXFAST32 PRIX64 /* uint_fast32_t */
|
|
|
|
#endif
|
|
|
|
|
2011-12-15 09:27:42 +04:00
|
|
|
#endif /* mozilla_IntegerPrintfMacros_h_ */
|