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
387 B
16 lines
387 B
11 years ago
|
=proto
|
||
|
int duk_put_prop_string(duk_context *ctx, int obj_index, const char *key);
|
||
|
|
||
|
=stack
|
||
|
[ ... obj! ... val! ] -> [ ... obj! ... ]
|
||
|
|
||
|
=summary
|
||
|
<p>Like <tt><a href="#duk_put_prop">duk_put_prop()</a></tt>,
|
||
|
but the property name is given as a NUL-terminated C string
|
||
|
<tt>key</tt>.</p>
|
||
|
|
||
|
=example
|
||
|
duk_push_string(ctx, "value");
|
||
|
rc = duk_put_prop_string(ctx, -3, "key");
|
||
|
printf("rc=%d\n", rc);
|