mirror of
https://github.com/fluencelabs/fluence-VRF
synced 2025-06-03 10:01:34 +00:00
14 lines
227 B
C
14 lines
227 B
C
|
#ifndef FLUENCE_C_SDK_ALLOCATOR_H
|
||
|
#define FLUENCE_C_SDK_ALLOCATOR_H
|
||
|
|
||
|
#include <stddef.h> // for size_t
|
||
|
|
||
|
extern "C" {
|
||
|
|
||
|
void *allocate(size_t size);
|
||
|
void deallocate(void *ptr, size_t size);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif //FLUENCE_C_SDK_ALLOCATOR_H
|