| 176 | } |
| 177 | |
| 178 | static SQInteger _string_printf(HSQUIRRELVM v) |
| 179 | { |
| 180 | SQChar *dest = NULL; |
| 181 | SQInteger length = 0; |
| 182 | if(SQ_FAILED(sqstd_format(v,2,&length,&dest))) |
| 183 | return -1; |
| 184 | |
| 185 | SQPRINTFUNCTION printfunc = sq_getprintfunc(v); |
| 186 | if(printfunc) printfunc(v,_SC("%s"),dest); |
| 187 | |
| 188 | return 0; |
| 189 | } |
| 190 | |
| 191 | static SQInteger _string_format(HSQUIRRELVM v) |
| 192 | { |
nothing calls this directly
no test coverage detected