15 lines
329 B
C
15 lines
329 B
C
|
#ifndef INCLUDE_WAYLANDCLIENT_ALLOCATOR_H_
|
||
|
#define INCLUDE_WAYLANDCLIENT_ALLOCATOR_H_
|
||
|
|
||
|
#include "sys/types.h"
|
||
|
|
||
|
struct Mem;
|
||
|
|
||
|
struct Mem *make_mem(size_t size);
|
||
|
void uninit_mem(struct Mem *mem);
|
||
|
|
||
|
void *mem_malloc(struct Mem *mem, size_t size);
|
||
|
void mem_free(struct Mem *mem, void *p);
|
||
|
|
||
|
#endif // INCLUDE_WAYLANDCLIENT_ALLOCATOR_H_
|