RosettaCodeData/Task/Truncate-a-file/C/truncate-a-file-2.c
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

7 lines
103 B
C

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