| 688 | |
| 689 | |
| 690 | static int f_write (lua_State *L) { |
| 691 | FILE *f = tofile(L); |
| 692 | lua_pushvalue(L, 1); /* push file at the stack top (to be returned) */ |
| 693 | return g_write(L, f, 2); |
| 694 | } |
| 695 | |
| 696 | |
| 697 | static int f_seek (lua_State *L) { |
nothing calls this directly
no test coverage detected