| 564 | |
| 565 | |
| 566 | LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) { |
| 567 | const char *ret; |
| 568 | va_list argp; |
| 569 | lua_lock(L); |
| 570 | va_start(argp, fmt); |
| 571 | ret = luaO_pushvfstring(L, fmt, argp); |
| 572 | va_end(argp); |
| 573 | luaC_checkGC(L); |
| 574 | lua_unlock(L); |
| 575 | return ret; |
| 576 | } |
| 577 | |
| 578 | |
| 579 | LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { |
no test coverage detected