const char* (const char *texx, ...)
| 664 | |
| 665 | // const char* (const char *texx, ...) |
| 666 | RuntimeScriptValue Sc_String_Format(const RuntimeScriptValue *params, int32_t param_count) |
| 667 | { |
| 668 | API_SCALL_SCRIPT_SPRINTF(String_Format, 1); |
| 669 | return RuntimeScriptValue().SetScriptObject((void*)CreateNewScriptString(scsf_buffer), &myScriptStringImpl); |
| 670 | } |
| 671 | |
| 672 | // const char* (const char *thisString) |
| 673 | RuntimeScriptValue Sc_String_LowerCase(void *self, const RuntimeScriptValue *params, int32_t param_count) |
nothing calls this directly
no test coverage detected