RosettaCodeData/Task/Truncate-a-file/C/truncate-a-file-2.c
2023-07-01 13:44:08 -04:00

7 lines
103 B
C

#include <unistd.h>
#include <sys/types.h>
...
truncate(filename, length);
ftruncate(fd, length);
...