mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
25 lines
371 B
ReStructuredText
25 lines
371 B
ReStructuredText
.. highlight:: c
|
|
|
|
|
|
Memory
|
|
======
|
|
|
|
.. c:function:: void* Test_Malloc(size_t n)
|
|
|
|
Allocate *n* bytes of memory.
|
|
|
|
.. versionchanged:: 0.6
|
|
|
|
Can now be replaced with a different allocator.
|
|
|
|
System
|
|
------
|
|
|
|
Access to the system allocator.
|
|
|
|
.. versionadded:: 0.6
|
|
|
|
.. c:function:: void* Test_SysMalloc(size_t n)
|
|
|
|
Allocate *n* bytes of memory using system allocator.
|