| 540 | |
| 541 | |
| 542 | LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) { |
| 543 | const char *ret; |
| 544 | va_list argp; |
| 545 | lua_lock(L); |
| 546 | luaC_checkGC(L); |
| 547 | va_start(argp, fmt); |
| 548 | ret = luaO_pushvfstring(L, fmt, argp); |
| 549 | va_end(argp); |
| 550 | lua_unlock(L); |
| 551 | return ret; |
| 552 | } |
| 553 | |
| 554 | |
| 555 | LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { |
no test coverage detected