| 596 | |
| 597 | |
| 598 | LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) { |
| 599 | const char *ret; |
| 600 | va_list argp; |
| 601 | lua_lock(L); |
| 602 | pushvfstring(L, argp, fmt, ret); |
| 603 | luaC_checkGC(L); |
| 604 | lua_unlock(L); |
| 605 | return ret; |
| 606 | } |
| 607 | |
| 608 | |
| 609 | LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { |
no outgoing calls
no test coverage detected