VirtualBox

source: vbox/trunk/include/iprt/nocrt/limits.h

Last change on this file was 99802, checked in by vboxsync, 13 months ago

*: Adjustments necessary for dropping -Zc:wchar_t- on windows and instead let the C++ compiler use the native wchar_t type.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 3.7 KB
Line 
1/** @file
2 * IPRT / No-CRT - Our own limits header.
3 */
4
5/*
6 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
7 *
8 * This file is part of VirtualBox base platform packages, as
9 * available from https://www.virtualbox.org.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation, in version 3 of the
14 * License.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <https://www.gnu.org/licenses>.
23 *
24 * The contents of this file may alternatively be used under the terms
25 * of the Common Development and Distribution License Version 1.0
26 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
27 * in the VirtualBox distribution, in which case the provisions of the
28 * CDDL are applicable instead of those of the GPL.
29 *
30 * You may elect to license modified versions of this file under the
31 * terms and conditions of either the GPL or the CDDL or both.
32 *
33 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
34 */
35
36#ifndef IPRT_INCLUDED_nocrt_limits_h
37#define IPRT_INCLUDED_nocrt_limits_h
38#ifndef RT_WITHOUT_PRAGMA_ONCE
39# pragma once
40#endif
41
42#include <iprt/types.h>
43
44#define CHAR_BIT 8
45#define SCHAR_MAX 0x7f
46#define SCHAR_MIN (-0x7f - 1)
47#define UCHAR_MAX 0xff
48#if 1 /* ASSUMES: signed char */
49# define CHAR_MAX SCHAR_MAX
50# define CHAR_MIN SCHAR_MIN
51#else
52# define CHAR_MAX UCHAR_MAX
53# define CHAR_MIN 0
54#endif
55
56#if !defined(WCHAR_MIN)
57# if defined(RT_OS_WINDOWS)
58# define WCHAR_MIN 0
59# endif
60#endif
61#if !defined(WCHAR_MAX)
62# if defined(RT_OS_WINDOWS)
63# define WCHAR_MAX 0xffff
64# endif
65#endif
66/** @todo Define WCHAR_MIN+WCHAR_MAX on non-windows */
67
68#define WORD_BIT 16
69#define USHRT_MAX 0xffff
70#define SHRT_MAX 0x7fff
71#define SHRT_MIN (-0x7fff - 1)
72
73/* ASSUMES 32-bit int */
74#define UINT_MAX 0xffffffffU
75#define INT_MAX 0x7fffffff
76#define INT_MIN (-0x7fffffff - 1)
77
78#if defined(RT_ARCH_X86) || defined(RT_OS_WINDOWS) || defined(RT_ARCH_SPARC) || defined(RT_ARCH_ARM32)
79# define LONG_BIT 32
80# define ULONG_MAX 0xffffffffU
81# define LONG_MAX 0x7fffffff
82# define LONG_MIN (-0x7fffffff - 1)
83#elif defined(RT_ARCH_AMD64) || defined(RT_ARCH_SPARC64) || defined(RT_ARCH_ARM64)
84# define LONG_BIT 64
85# define ULONG_MAX UINT64_C(0xffffffffffffffff)
86# define LONG_MAX INT64_C(0x7fffffffffffffff)
87# define LONG_MIN (INT64_C(-0x7fffffffffffffff) - 1)
88#else
89# error "PORTME"
90#endif
91
92#define LLONG_BIT 64
93#define ULLONG_MAX UINT64_C(0xffffffffffffffff)
94#define LLONG_MAX INT64_C(0x7fffffffffffffff)
95#define LLONG_MIN (INT64_C(-0x7fffffffffffffff) - 1)
96
97#undef SIZE_MAX
98#undef SIZE_T_MAX
99#undef SSIZE_MAX
100#undef INTPTR_MAX
101#undef UINTPTR_MAX
102#if ARCH_BITS == 32
103# define SIZE_T_MAX 0xffffffffU
104# define SSIZE_MAX 0x7fffffff
105# define INTPTR_MAX 0x7fffffff
106# define UINTPTR_MAX 0xffffffffU
107#elif ARCH_BITS == 64
108# define SIZE_T_MAX UINT64_C(0xffffffffffffffff)
109# define SSIZE_MAX INT64_C(0x7fffffffffffffff)
110# define INTPTR_MAX INT64_C(0x7fffffffffffffff)
111# define UINTPTR_MAX UINT64_C(0xffffffffffffffff)
112#else
113# error "huh?"
114#endif
115#define SIZE_MAX SIZE_T_MAX
116
117/*#define OFF_MAX __OFF_MAX
118#define OFF_MIN __OFF_MIN*/
119
120#endif /* !IPRT_INCLUDED_nocrt_limits_h */
121
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use