| ||||||
SummaryTranslates a JS string into a C character array. | ||||||
Syntaxchar * JS_GetStringBytes(JSString *str); | ||||||
DescriptionJS_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
|