* arch/risc-v/include/inttypes.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
#ifndef __ARCH_RISCV_INCLUDE_INTTYPES_H
#define __ARCH_RISCV_INCLUDE_INTTYPES_H
* Included Files
****************************************************************************/
* Pre-processor Definitions
****************************************************************************/
#if defined(CONFIG_ARCH_RV64ILP32) || defined(CONFIG_ARCH_RV32)
#define _PRI32PREFIX "l"
#define _PRI64PREFIX "ll"
#define _PRIPTRPREFIX
#define _SCN32PREFIX "l"
#define _SCN64PREFIX "ll"
#define _SCNPTRPREFIX
#define INT32_C(x) x ## l
#define INT64_C(x) x ## ll
#define UINT32_C(x) x ## ul
#define UINT64_C(x) x ## ull
#elif defined(CONFIG_ARCH_RV64)
#define _PRI32PREFIX
#define _PRI64PREFIX "l"
#define _PRIPTRPREFIX "l"
#define _SCN32PREFIX
#define _SCN64PREFIX "l"
#define _SCNPTRPREFIX "l"
#define INT32_C(x) x
#define INT64_C(x) x ## l
#define UINT32_C(x) x ## u
#define UINT64_C(x) x ## ul
#endif
#define PRId8 "d"
#define PRId16 "d"
#define PRId32 _PRI32PREFIX "d"
#define PRId64 _PRI64PREFIX "d"
#define PRIdPTR _PRIPTRPREFIX "d"
#define PRIi8 "i"
#define PRIi16 "i"
#define PRIi32 _PRI32PREFIX "i"
#define PRIi64 _PRI64PREFIX "i"
#define PRIiPTR _PRIPTRPREFIX "i"
#define PRIo8 "o"
#define PRIo16 "o"
#define PRIo32 _PRI32PREFIX "o"
#define PRIo64 _PRI64PREFIX "o"
#define PRIoPTR _PRIPTRPREFIX "o"
#define PRIu8 "u"
#define PRIu16 "u"
#define PRIu32 _PRI32PREFIX "u"
#define PRIu64 _PRI64PREFIX "u"
#define PRIuPTR _PRIPTRPREFIX "u"
#define PRIx8 "x"
#define PRIx16 "x"
#define PRIx32 _PRI32PREFIX "x"
#define PRIx64 _PRI64PREFIX "x"
#define PRIxPTR _PRIPTRPREFIX "x"
#define PRIX8 "X"
#define PRIX16 "X"
#define PRIX32 _PRI32PREFIX "X"
#define PRIX64 _PRI64PREFIX "X"
#define PRIXPTR _PRIPTRPREFIX "X"
#define SCNd8 "hhd"
#define SCNd16 "hd"
#define SCNd32 _SCN32PREFIX "d"
#define SCNd64 _SCN64PREFIX "d"
#define SCNdPTR _SCNPTRPREFIX "d"
#define SCNi8 "hhi"
#define SCNi16 "hi"
#define SCNi32 _SCN32PREFIX "i"
#define SCNi64 _SCN64PREFIX "i"
#define SCNiPTR _SCNPTRPREFIX "i"
#define SCNo8 "hho"
#define SCNo16 "ho"
#define SCNo32 _SCN32PREFIX "o"
#define SCNo64 _SCN64PREFIX "o"
#define SCNoPTR _SCNPTRPREFIX "o"
#define SCNu8 "hhu"
#define SCNu16 "hu"
#define SCNu32 _SCN32PREFIX "u"
#define SCNu64 _SCN64PREFIX "u"
#define SCNuPTR _SCNPTRPREFIX "u"
#define SCNx8 "hhx"
#define SCNx16 "hx"
#define SCNx32 _SCN32PREFIX "x"
#define SCNx64 _SCN64PREFIX "x"
#define SCNxPTR _SCNPTRPREFIX "x"
#define INT8_C(x) x
#define INT16_C(x) x
#define UINT8_C(x) x
#define UINT16_C(x) x
#ifdef CONFIG_ARCH_RV32
# define PRIxREG "08" PRIx32
#else
# define PRIxREG "016" PRIx64
#endif
#endif