| 515 | |
| 516 | |
| 517 | LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) { |
| 518 | const char *ret; |
| 519 | va_list argp; |
| 520 | lua_lock(L); |
| 521 | va_start(argp, fmt); |
| 522 | ret = luaO_pushvfstring(L, fmt, argp); |
| 523 | va_end(argp); |
| 524 | luaC_checkGC(L); |
| 525 | lua_unlock(L); |
| 526 | return ret; |
| 527 | } |
| 528 | |
| 529 | |
| 530 | LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { |
no test coverage detected