| 694 | |
| 695 | |
| 696 | static int f_write (lua_State *L) { |
| 697 | FILE *f = tofile(L); |
| 698 | lua_pushvalue(L, 1); /* push file at the stack top (to be returned) */ |
| 699 | return g_write(L, f, 2); |
| 700 | } |
| 701 | |
| 702 | |
| 703 | static int f_seek (lua_State *L) { |
nothing calls this directly
no test coverage detected