Functions§
- aligned_
alloc - Allocates
sizeBytes aligned toalignBytes. Returns a null pointer on allocation failure. - aligned_
free ⚠ - Deallocates aligned memory that was allocated with
aligned_alloc. Unsafe because calling this with a pointer that was not allocated withaligned_alloc(or already released) causes undefined behavior.