From WikiChip
Difference between revisions of "c/stdalign.h"
< c

m (Inject moved page Stdalign.h - C to c/stdalign.h)
m
 
Line 1: Line 1:
{{DISPLAYTITLE:<stdalign.h> Header - C}}
+
{{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 16: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