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