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.
16 lines
394 B
16 lines
394 B
=proto
|
|
void *duk_push_dynamic_buffer(duk_context *ctx, size_t size);
|
|
|
|
=stack
|
|
[ ... ] -> [ ... buf! ]
|
|
|
|
=summary
|
|
<p>Allocate a dynamic (resizable) buffer and push it to the value stack.
|
|
Shortcut for <tt><a href="#duk_push_buffer">duk_push_buffer()</a></tt>
|
|
with <tt>dynamic = 1</tt>.</p>
|
|
|
|
=example
|
|
void *p;
|
|
|
|
p = duk_push_dynamic_buffer(ctx, 1024);
|
|
printf("allocated buffer, data area: %p\n", p);
|
|
|