#ifndef FVM_UTILS_H_ #define FVM_UTILS_H_ #include struct allocator; typedef struct allocator *Allocator; Allocator newAllocator(); void deleteAllocator(Allocator allocator); void* allocate(Allocator allocator, size_t size); #endif // FVM_UTILS_H_