summaryrefslogtreecommitdiff
path: root/tests/allocator.hpp
blob: cb52c91d1777df712f8e2a478dd8876548d0acf0 (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