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