1 | /** @file
|
---|
2 | * IPRT / No-CRT - Our own limits header.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2019 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef IPRT_INCLUDED_nocrt_limits_h
|
---|
27 | #define IPRT_INCLUDED_nocrt_limits_h
|
---|
28 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
29 | # pragma once
|
---|
30 | #endif
|
---|
31 |
|
---|
32 | #include <iprt/types.h>
|
---|
33 |
|
---|
34 | #define CHAR_BIT 8
|
---|
35 | #define SCHAR_MAX 0x7f
|
---|
36 | #define SCHAR_MIN (-0x7f - 1)
|
---|
37 | #define UCHAR_MAX 0xff
|
---|
38 | #if 1 /* ASSUMES: signed char */
|
---|
39 | # define CHAR_MAX SCHAR_MAX
|
---|
40 | # define CHAR_MIN SCHAR_MIN
|
---|
41 | #else
|
---|
42 | # define CHAR_MAX UCHAR_MAX
|
---|
43 | # define CHAR_MIN 0
|
---|
44 | #endif
|
---|
45 |
|
---|
46 | #define WORD_BIT 16
|
---|
47 | #define USHRT_MAX 0xffff
|
---|
48 | #define SHRT_MAX 0x7fff
|
---|
49 | #define SHRT_MIN (-0x7fff - 1)
|
---|
50 |
|
---|
51 | /* ASSUMES 32-bit int */
|
---|
52 | #define UINT_MAX 0xffffffffU
|
---|
53 | #define INT_MAX 0x7fffffff
|
---|
54 | #define INT_MIN (-0x7fffffff - 1)
|
---|
55 |
|
---|
56 | #if defined(RT_ARCH_X86) || defined(RT_OS_WINDOWS) || defined(RT_ARCH_SPARC)
|
---|
57 | # define LONG_BIT 32
|
---|
58 | # define ULONG_MAX 0xffffffffU
|
---|
59 | # define LONG_MAX 0x7fffffff
|
---|
60 | # define LONG_MIN (-0x7fffffff - 1)
|
---|
61 | #elif defined(RT_ARCH_AMD64) || defined(RT_ARCH_SPARC64)
|
---|
62 | # define LONG_BIT 64
|
---|
63 | # define ULONG_MAX UINT64_C(0xffffffffffffffff)
|
---|
64 | # define LONG_MAX INT64_C(0x7fffffffffffffff)
|
---|
65 | # define LONG_MIN (INT64_C(-0x7fffffffffffffff) - 1)
|
---|
66 | #else
|
---|
67 | # error "PORTME"
|
---|
68 | #endif
|
---|
69 |
|
---|
70 | #define LLONG_BIT 64
|
---|
71 | #define ULLONG_MAX UINT64_C(0xffffffffffffffff)
|
---|
72 | #define LLONG_MAX INT64_C(0x7fffffffffffffff)
|
---|
73 | #define LLONG_MIN (INT64_C(-0x7fffffffffffffff) - 1)
|
---|
74 |
|
---|
75 | #if ARCH_BITS == 32
|
---|
76 | # define SIZE_T_MAX 0xffffffffU
|
---|
77 | # define SSIZE_MAX 0x7fffffff
|
---|
78 | #elif ARCH_BITS == 64
|
---|
79 | # define SIZE_T_MAX UINT64_C(0xffffffffffffffff)
|
---|
80 | # define SSIZE_MAX INT64_C(0x7fffffffffffffff)
|
---|
81 | #else
|
---|
82 | # error "huh?"
|
---|
83 | #endif
|
---|
84 |
|
---|
85 | /*#define OFF_MAX __OFF_MAX
|
---|
86 | #define OFF_MIN __OFF_MIN*/
|
---|
87 |
|
---|
88 | #endif /* !IPRT_INCLUDED_nocrt_limits_h */
|
---|
89 |
|
---|