| 471 | |
| 472 | |
| 473 | LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) { |
| 474 | const char *ret; |
| 475 | va_list argp; |
| 476 | lua_lock(L); |
| 477 | luaC_checkGC(L); |
| 478 | va_start(argp, fmt); |
| 479 | ret = luaO_pushvfstring(L, fmt, argp); |
| 480 | va_end(argp); |
| 481 | lua_unlock(L); |
| 482 | return ret; |
| 483 | } |
| 484 | |
| 485 | |
| 486 | LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { |
no test coverage detected