RDFS
The Rice Comp413 2017 class' continuation on the work of the 2016 RDFS.
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
allocator.hpp
1 #ifndef HEADER_TEST_ALLOCATOR_HPP
2 #define HEADER_TEST_ALLOCATOR_HPP
3 
4 #include <stddef.h>
5 
6 void* memory_allocate(size_t size);
7 size_t memory_size(void* ptr);
8 void memory_deallocate(void* ptr);
9 
10 #endif