memalignment
¶ISO C23 specification:
https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3220.pdf section 7.24.9.1
Gnulib module: —
Portability problems fixed by Gnulib:
Portability problems not fixed by Gnulib:
To check whether a pointer P has alignment A,
Gnulib code typically tests (uintptr_t) P % A
instead of memalignment (P) % A
.
See Other portability assumptions made by Gnulib.