#ifndef FVM_UTILS_H_ #define FVM_UTILS_H_ #include struct allocator; typedef struct allocator * allocator_t; allocator_t new_allocator(); void delete_allocator(allocator_t allocator); void* allocate(allocator_t allocator, size_t size); #endif // FVM_UTILS_H_