mirror of
https://github.com/fluencelabs/sqlite
synced 2025-04-25 17:32:13 +00:00
28 lines
708 B
C
28 lines
708 B
C
#ifndef C_SDK_ALLOCATOR_H
|
|
#define C_SDK_ALLOCATOR_H
|
|
|
|
#include <stddef.h> // for size_t
|
|
|
|
/**
|
|
* Allocates a memory region of given size.
|
|
*
|
|
* Used by Wasm VM for byte array passing. Should be exported from module.
|
|
*
|
|
* @param size a size of needed memory region.
|
|
* @return a pointer to allocated memory region.
|
|
*/
|
|
void *allocate(size_t size);
|
|
|
|
/**
|
|
* Frees a memory region.
|
|
*
|
|
* Used by Wasm VM for freeing previous memory allocated by `allocate` function.
|
|
* Should be exported from module.
|
|
*
|
|
* @param ptr the pointer to the previously allocated memory region.
|
|
* @param size the size of the previously allocated memory region.
|
|
*/
|
|
void deallocate(void *ptr, size_t size);
|
|
|
|
#endif //C_SDK_ALLOCATOR_H
|