| 647 | |
| 648 | |
| 649 | static int f_write (lua_State *L) { |
| 650 | FILE *f = tofile(L); |
| 651 | lua_pushvalue(L, 1); /* push file at the stack top (to be returned) */ |
| 652 | return g_write(L, f, 2); |
| 653 | } |
| 654 | |
| 655 | |
| 656 | static int f_seek (lua_State *L) { |
nothing calls this directly
no test coverage detected