1.terminating abruptly by having or as if having an end or point cut off;
a truncate leaf
1.replace a corner by a plane
2.approximate by ignoring all terms beyond a chosen one;
truncate a series
3.make shorter as if by cutting off;
truncate a word
C语言函数 相关函数:open, ftruncate 表头文件:#include <unistd.h> 定义函数:int truncate(const char *path, off_t length); 函数说明:truncate()会将参数path指定的文件大小改为参数length指定的大小。 如果原来的文件大小比参数length大,则超过的部分会被删除 返回值:执行成功则返回0, 失败返回-1, 错误原因存于errno 错误代码:EACCESS 参数path所指定的文件无法存取 EROFS 欲写入的文件存在于只读文件系统内