blob: 677fbe49fb1d15bdf4672403c24b68be314a1990 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef HEADER_TEST_ALLOCATOR_HPP
#define HEADER_TEST_ALLOCATOR_HPP
#include <stddef.h>
void* memory_allocate(size_t size);
size_t memory_size(void* ptr);
void memory_deallocate(void* ptr);
#endif
|