📄 ftruncate.c
字号:
/* test whether ftruncte() can extend a file */#if defined(HAVE_UNISTD_H)#include <unistd.h>#endif#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#define DATA "conftest.trunc"#define LEN 7663main(){ int *buf; int fd = open(DATA,O_RDWR|O_CREAT|O_TRUNC,0666); ftruncate(fd, LEN); unlink(DATA); if (lseek(fd, 0, SEEK_END) == LEN) { exit(0); } exit(1);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -