| 189 | } |
| 190 | |
| 191 | static SQInteger _string_format(HSQUIRRELVM v) |
| 192 | { |
| 193 | SQChar *dest = NULL; |
| 194 | SQInteger length = 0; |
| 195 | if(SQ_FAILED(sqstd_format(v,2,&length,&dest))) |
| 196 | return -1; |
| 197 | sq_pushstring(v,dest,length); |
| 198 | return 1; |
| 199 | } |
| 200 | |
| 201 | static void __strip_l(const SQChar *str,const SQChar **start) |
| 202 | { |
nothing calls this directly
no test coverage detected