aboutsummaryrefslogtreecommitdiff
path: root/arch/all/compiler-renesas/bits/types/primitive.h
blob: 52ef17e5568a0655b6d2d5667dcb9b94986ba49b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* ****************************************************************************
 * types/primitive.h -- Information about the primitive types for SHC.
 * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
 *
 * This file is part of the 'all/compiler-renesas' module,
 * in libcarrot, an experimental modular libc project.
 *
 * This file is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation, either version 3 of the License, or (at your option)
 * any later version.
 *
 * This file is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Lesser Public
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this file.  If not, see <http://www.gnu.org/licenses/>.
 * ************************************************************************* */
#define  __CHAR_BIT       ( 8)
#define  __CHAR_IS_SIGNED   1

#define  __CHAR_WIDTH ( 8)
#define  __CHAR_MIN   (-128)
#define  __CHAR_MAX   (+127)
#define __UCHAR_MIN   ( 0)
#define __UCHAR_MAX   ( 255)

/* Short type. */

#define  __SHRT_WIDTH ( 16)
#define  __SHRT_MIN   (-32768)
#define  __SHRT_MAX   (+32767)
#define __USHRT_MIN   ( 0)
#define __USHRT_MAX   (65535)

/* Int type. */

#define  __INT_WIDTH  ( 32)
#define  __INT_MIN    (-2147483648)
#define  __INT_MAX    (+2147483647)
#define __UINT_MIN    ( 0)
#define __UINT_MAX    ( 4294967295)

/* Long type. */

#define  __LONG_WIDTH ( 32)
#define  __LONG_MIN   (-2147483648L)
#define  __LONG_MAX   (+2147483647L)
#define __ULONG_MIN   ( 0)
#define __ULONG_MAX   ( 4294967295UL)