Entry: JS_GetStringBytes (Function)
Summary: Translates a JS string into a C character array.
Syntax:
char * JS_GetStringBytes(JSString *str);
Description:
JS_GetStringBytes translates a specified JS string, str, into a C character array. If successful, JS_GetStringBytes returns a pointer to the array. The array is automatically freed when str is finalized by the JavaScript garbage collection mechanism.
See also:
|
|
|