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