| 673 | |
| 674 | |
| 675 | static int f_write (lua_State *L) { |
| 676 | FILE *f = tofile(L); |
| 677 | lua_pushvalue(L, 1); /* push file at the stack top (to be returned) */ |
| 678 | return g_write(L, f, 2); |
| 679 | } |
| 680 | |
| 681 | |
| 682 | static int f_seek (lua_State *L) { |
nothing calls this directly
no test coverage detected