mirror of
https://github.com/stedolan/jq.git
synced 2024-05-11 05:55:39 +00:00
11 lines
194 B
C
11 lines
194 B
C
#ifndef JV_ALLOC_H
|
|
#define JV_ALLOC_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void* jv_mem_alloc(size_t);
|
|
void jv_mem_free(void*);
|
|
__attribute__((warn_unused_result)) void* jv_mem_realloc(void*, size_t);
|
|
|
|
#endif
|