Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
stdchar.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2//
3// ActiveParts (AP) and the corresponding Data Flow Framework (DFF) is invented and designed by Jakob Daescher.
4// ANY USE OF THIS CODE CONSTITUTES ACCEPTANCE OF THE TERMS OF THE COPYRIGHT NOTICE.
5// ===================================================================================================
6// COPYRIGHT NOTICE
7// ===================================================================================================
8// Copyright (C) 2005-2075, IMT Information Management Technology AG, 9470 Buchs, Switzerland
9// All rights reserved.
10// This code is proprietary software of IMT Information Management Technology AG (hereinafter: "IMT").
11// Proprietary software is computer software licensed under exclusive legal right of IMT.
12//
13// The licensee is given the irrevocable, perpetual, worldwide, non-exclusive right and license to use,
14// execute and reproduce the software in binary form within the licensed products.
15//
16// Redistribution and use in source forms, without modification, are permitted provided that the following conditions are met:
17// (1) Copying of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
18// (2) Copying of source code is only allowed for regulatory documentation and archiving purposes
19// (3) Redistributions in binary form must reproduce the above copyright notice,
20// this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
21//
22// IMT provide no reassurances that the source code provided does not infringe
23// any patent, copyright, or any other intellectual property rights of third parties.
24// IMT disclaim any liability to any recipient for claims brought against
25// recipient by any third party for infringement of that parties intellectual property rights.
26//
27// THIS SOFTWARE IS PROVIDED BY IMT AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
28// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29// IN NO EVENT SHALL IMT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCURE-MENT OF SUBSTITUTE GOODS OR SERVICES;
31// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
33// IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34// ===================================================================================================
35
36// AXIVION FILE Style AutosarC++19_03-A2.8.1: File exempted from this rule, required construct
37// AXIVION FILE Style AutosarC++19_03-A3.9.1: File exempted from this rule, required construct
38// AXIVION FILE Style AutosarC++19_03-A16.0.1: File exempted from this rule, as file includes platform specific constructs
39// AXIVION FILE Style AutosarC++19_03-A17.0.1: Required redefinition / Naming must match reserved identifier
40// AXIVION FILE Style AutosarC++19_03-M7.3.1: File exempted from this rule, required construct
41// AXIVION FILE Style AutosarC++19_03-M16.0.1: File exempted from this rule, required construct
42// AXIVION FILE Style CodingStyle-SourceFileNaming: File exempted from this rule, required construct
43// AXIVION FILE Style CodingStyle-Naming.Macro: Required redefinition / Naming must match reserved identifier
44// AXIVION FILE Style CodingStyle-Naming.TypeAlias: Required redefinition / Naming must match reserved identifier
45// AXIVION FILE Style CodingStyle-Naming.UserType: Required redefinition / Naming must match reserved identifier
46
47#ifndef _STDCHAR
48#define _STDCHAR
49
50// MISRA Rule 3-9-2: typedefs that indicate size and signedness should be used in place of the basic numerical types.
54// AXIVION Next Line AutosarC++19_03-A7.1.6 / AutosarC++19_03-A3.9.1 / CodingStyle-Naming.Typedef / CodingStyle-Naming.UserType: Required construct
55using char_t = char;
56
57//
58// Defining char types for the given compiler version
59//
60#if defined(__cplusplus)
61//Adding char types char8_t ,char16_t & char32_t if they are not defined for the given compiler version.
62//__cplusplus value 199711L = C++98. C++11 is not supported
63//char16_t and char32_t are supported since C++11. char8_t is supported since C++20.
64#if (__cplusplus <= 199711L)
65#ifndef char8_t
69// AXIVION Next Construct AutosarC++19_03-A7.1.8: Allowed in the scope of the platform definition file.
70using char8_t = char;
71#endif // !char8_t
72#ifndef char16_t
73#if defined(__WIN32_GNU__)
77using char16_t = uint16_t;
78#else
79#include <cuchar> //char_16t and char_32t are defined inside this header file. The header uchar declares them as unsigned integer types to be used for 16-bit and 32-bit characters, respectively.
80#endif
81#endif // !char16_t
82#ifndef char32_t
83#if defined(__WIN32_GNU__)
87using char32_t = uint32_t;
88#else
89#include <cuchar> //char_16t and char_32t are defined inside this header file. The header uchar declares them as unsigned integer types to be used for 16-bit and 32-bit characters, respectively.
90#endif
91#endif // !char32_t
92
93//__cplusplus value 201103L = std:c++11 and __cplusplus value 201703L = std:c++17.
94//if the __cplusplus value falls between 201103L and 201703L, meaning the comiler version is more or equal to C++11.
95//char16_t and char32_t are supported since C++11. char8_t is supported since C++20.
96#elif ((__cplusplus >= 201103L) && (__cplusplus <= 201703L))
97#ifndef char8_t
101using char8_t = char;
102#endif // !char8_t
103#endif
104#endif // __cplusplus
105
106#endif // _STDCHAR
char char_t
The char_t typedef does not indicate size and signedness and is simply included to allow char objects...
Definition stdchar.h:55
unsigned __int16 uint16_t
Definition stdint.h:63
unsigned __int32 uint32_t
Definition stdint.h:64