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