RosettaCodeData/Task/Truncate-a-file/Forth/truncate-a-file.fth
2024-04-19 16:56:29 -07:00

4 lines
125 B
Forth

: truncate-file ( fname fnamelen fsize -- )
0 2swap r/w open-file throw
dup >r resize-file throw
r> close-file throw ;