mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
340 B
12 lines
340 B
10 years ago
|
#ifndef DUK_ALLOC_HYBRID_H_INCLUDED
|
||
|
#define DUK_ALLOC_HYBRID_H_INCLUDED
|
||
|
|
||
|
#include "duktape.h"
|
||
|
|
||
|
void *duk_alloc_hybrid_init(void);
|
||
|
void *duk_alloc_hybrid(void *udata, duk_size_t size);
|
||
|
void *duk_realloc_hybrid(void *udata, void *ptr, duk_size_t size);
|
||
|
void duk_free_hybrid(void *udata, void *ptr);
|
||
|
|
||
|
#endif /* DUK_ALLOC_HYBRID_H_INCLUDED */
|