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