blob: 1a88220c1d6ed3bcd677e3c836231ca35aaf9f96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef FVM_UTILS_H_
#define FVM_UTILS_H_
#include <stdlib.h>
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_
|