| 676 | } |
| 677 | |
| 678 | LUA_API const char *lua_pushfstring(lua_State *L, const char *fmt, ...) |
| 679 | { |
| 680 | const char *ret; |
| 681 | va_list argp; |
| 682 | lj_gc_check(L); |
| 683 | va_start(argp, fmt); |
| 684 | ret = lj_strfmt_pushvf(L, fmt, argp); |
| 685 | va_end(argp); |
| 686 | return ret; |
| 687 | } |
| 688 | |
| 689 | LUA_API void lua_pushcclosure(lua_State *L, lua_CFunction f, int n) |
| 690 | { |
no test coverage detected