| 2320 | |
| 2321 | |
| 2322 | LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) { |
| 2323 | const char *ret; |
| 2324 | va_list argp; |
| 2325 | lua_lock(L); |
| 2326 | luaC_checkGC(L); |
| 2327 | va_start(argp, fmt); |
| 2328 | ret = luaO_pushvfstring(L, fmt, argp); |
| 2329 | va_end(argp); |
| 2330 | lua_unlock(L); |
| 2331 | return ret; |
| 2332 | } |
| 2333 | |
| 2334 | |
| 2335 | LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) { |
no test coverage detected