Difference between revisions of "cpp/header"
m (list <stacktrace> as one of error handling libraries to correspond with the main page layout) |
m (added header <expected>) |
||
Line 23: | Line 23: | ||
{{dsc inc | cpp/header/dsc cstdlib}} | {{dsc inc | cpp/header/dsc cstdlib}} | ||
{{dsc inc | cpp/header/dsc ctime}} | {{dsc inc | cpp/header/dsc ctime}} | ||
+ | {{dsc inc | cpp/header/dsc expected}} | ||
{{dsc inc | cpp/header/dsc functional}} | {{dsc inc | cpp/header/dsc functional}} | ||
{{dsc inc | cpp/header/dsc initializer_list}} | {{dsc inc | cpp/header/dsc initializer_list}} |
Revision as of 20:19, 7 February 2022
The interface of C++ standard library is defined by the following collection of headers.
C compatibility headers
For some of the C standard library headers of the form xxx.h
, the C++ standard library both includes an identically-named header and another header of the form cxxx
(all meaningful cxxx
headers are listed above). The intended use of headers of form xxx.h
is for interoperability only. It is possible that C++ source files need to include one of these headers in order to be valid ISO C. Source files that are not intended to also be valid ISO C should not use any of the C headers.
With the exception of complex.h
, each xxx.h
header included in the C++ standard library places in the global namespace each name that the corresponding cxxx
header would have placed in the std namespace.
These headers are allowed to also declare the same names in the std namespace, and the corresponding cxxx
headers are allowed to also declare the same names in the global namespace: including <cstdlib>
definitely provides std::malloc and may also provide ::malloc. Including <stdlib.h>
definitely provides ::malloc and may also provide std::malloc. This applies even to functions and function overloads that are not part of C standard library.
Notes: xxx.h
headers are deprecated in C++98 and undeprecated in C++23. These headers are discouraged for pure C++ code, but not subject to future removal.
Behaves same as <cassert> | |
Behaves as if each name from <cctype> is placed in global namespace | |
Behaves same as <cerrno> | |
(C++11) |
Behaves as if each name from <cfenv> is placed in global namespace |
Behaves same as <cfloat> | |
(C++11) |
Behaves as if each name from <cinttypes> is placed in global namespace |
Behaves same as <climits> | |
Behaves as if each name from <clocale> is placed in global namespace | |
Behaves as if each name from <cmath> is placed in global namespace, except for names of mathematical special functions | |
Behaves as if each name from <csetjmp> is placed in global namespace | |
Behaves as if each name from <csignal> is placed in global namespace | |
Behaves as if each name from <cstdarg> is placed in global namespace | |
Behaves as if each name from <cstddef> is placed in global namespace, except for names of std::byte and related functions
| |
(C++11) |
Behaves as if each name from <cstdint> is placed in global namespace |
Behaves as if each name from <cstdio> is placed in global namespace | |
Behaves as if each name from <cstdlib> is placed in global namespace | |
Behaves as if each name from <cstring> is placed in global namespace | |
Behaves as if each name from <ctime> is placed in global namespace | |
(C++11) |
Behaves as if each name from <cuchar> is placed in global namespace |
Behaves as if each name from <cwchar> is placed in global namespace | |
Behaves as if each name from <cwctype> is placed in global namespace |
Special C compatibility headers
The header <stdatomic.h>
declares names which are also provided in the C standard library, and defines the _Atomic
macro which is a keyword in C. Unlike other xxx.h
headers, corresponding <cstdatomic>
is not provided.
(C++23) |
Defines _Atomic and provides corresponding components in the C standard library
|
Empty C headers
The headers <complex.h>
, <ccomplex>
, <tgmath.h>
, and <ctgmath>
do not contain any content from the C standard library and instead merely include other headers from the C++ standard library.
(C++11)(deprecated in C++17)(removed in C++20) |
Simply includes the header <complex> |
(C++11) |
Simply includes the header <complex> |
(C++11)(deprecated in C++17)(removed in C++20) |
Simply includes the headers <complex> and <cmath>: the overloads equivalent to the contents of the C header tgmath.h are already provided by those headers
|
(C++11) |
Simply includes the headers <complex> and <cmath> |
Meaningless C headers
The headers <ciso646>
, <cstdalign>
, and <cstdbool>
are meaningless in C++ because the macros they provide in C are language keywords in C++.
(removed in C++20) |
Empty header. The macros that appear in iso646.h in C are keywords in C++
|
(C++11)(deprecated in C++17)(removed in C++20) |
Defines one compatibility macro constant |
(C++11)(deprecated in C++17)(removed in C++20) |
Defines one compatibility macro constant |
Has no effect | |
(C++11) |
Defines one compatibility macro constant |
(C++11) |
Defines one compatibility macro constant |
Unsupported C headers
The C headers <stdatomic.h>
,(until C++23) <stdnoreturn.h>
, and <threads.h>
are not included in C++ and have no cxxx
equivalents.
Experimental libraries
C++ TR's/TS's also define several collections of headers.
See also
C documentation for C Standard Library headers
|