From WikiChip
Difference between revisions of "c/stdalign.h"
(Created page with "{{DISPLAYTITLE:<stdalign.h> Header - C}} {{C Standard Library}} The '''<stdalign.h>''' header is part of the standard library of the C programming language that provi...") |
m |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{c title|<stdalign.h> Header}} |
{{C Standard Library}} | {{C Standard Library}} | ||
− | |||
The '''<stdalign.h>''' header is part of the [[standard library]] of the [[C programming language]] that provides four convenient macros for dealing with alignments of objects. This header was added in [[C11]]. | The '''<stdalign.h>''' header is part of the [[standard library]] of the [[C programming language]] that provides four convenient macros for dealing with alignments of objects. This header was added in [[C11]]. | ||
Latest revision as of 15:20, 20 December 2015
The <stdalign.h> header is part of the standard library of the C programming language that provides four convenient macros for dealing with alignments of objects. This header was added in C11.
Macros[edit]
The header provides a single macro definition:
Macro Name | Description | Since |
---|---|---|
alignas | expand to _Alignas | C11 |
alignof | expand to _Alignof | C11 |
__alignas_is_defined | expand to the integer constant 1 | C11 |
__alignof_is_defined | expand to the integer constant 1 | C11 |