| 503 | |
| 504 | |
| 505 | LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) { |
| 506 | const char *ret; |
| 507 | va_list argp; |
| 508 | lua_lock(L); |
| 509 | luaC_checkGC(L); |
| 510 | va_start(argp, fmt); |
| 511 | ret = luaO_pushvfstring(L, fmt, argp); |
| 512 | va_end(argp); |
| 513 | lua_unlock(L); |
| 514 | return ret; |
| 515 | } |
| 516 | |
| 517 | |
| 518 | LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { |
no test coverage detected