C memory management library
From cppreference.com
< c
[edit] Functions
Defined in header
<stdlib.h> |
|
allocates memory (function) |
|
allocates and zeroes memory (function) |
|
expands previously allocated memory block (function) |
|
deallocates previously allocated memory (function) |
|
(C11)
|
allocates aligned memory (function) |
[edit] References
- C11 standard (ISO/IEC 9899:2011):
-
- 7.22.3 Memory management functions (p: 347-349)
- C99 standard (ISO/IEC 9899:1999):
-
- 7.20.3 Memory management functions (p: 313-314)
- C89/C90 standard (ISO/IEC 9899:1990):
-
- 4.10.3 Memory management functions
[edit] See also
C++ documentation for C memory management library
|