| 478 | |
| 479 | |
| 480 | LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) { |
| 481 | const char *ret; |
| 482 | va_list argp; |
| 483 | lua_lock(L); |
| 484 | luaC_checkGC(L); |
| 485 | va_start(argp, fmt); |
| 486 | ret = luaO_pushvfstring(L, fmt, argp); |
| 487 | va_end(argp); |
| 488 | lua_unlock(L); |
| 489 | return ret; |
| 490 | } |
| 491 | |
| 492 | |
| 493 | LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { |
no test coverage detected