You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/c-runtime-library/memory-allocation.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,15 +14,15 @@ Use these routines to allocate, free, and reallocate memory.
14
14
15
15
|Routine|Use|
16
16
|-------------|---------|
17
-
|[_alloca](../c-runtime-library/reference/alloca.md), [_malloca](../c-runtime-library/reference/malloca.md)|Allocate memory from stack|
17
+
|[_alloca](../c-runtime-library/reference/alloca.md), [_malloca](../c-runtime-library/reference/malloca.md)|Allocate memory from the stack|
18
18
|[calloc](../c-runtime-library/reference/calloc.md)|Allocate storage for array, initializing every byte in allocated block to 0|
19
19
|[_calloc_dbg](../c-runtime-library/reference/calloc-dbg.md)|Debug version of **calloc**; only available in the debug versions of the run-time libraries|
|[_expand](../c-runtime-library/reference/expand.md)|Expand or shrink block of memory without moving it|
22
22
|[_expand_dbg](../c-runtime-library/reference/expand-dbg.md)|Debug version of **_expand**; only available in the debug versions of the run-time libraries|
0 commit comments