| 651 | |
| 652 | |
| 653 | LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) { |
| 654 | const char *ret; |
| 655 | va_list argp; |
| 656 | lua_lock(L); |
| 657 | pushvfstring(L, argp, fmt, ret); |
| 658 | luaC_checkGC(L); |
| 659 | lua_unlock(L); |
| 660 | return ret; |
| 661 | } |
| 662 | |
| 663 | |
| 664 | LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { |
no outgoing calls
no test coverage detected