creat.c

来自「KPIT GNU Tools is a set of GNU developme」· C语言 代码 · 共 14 行

C
14
字号
/* creat() "system call" *//* This is needed by f2c and therefore the SPEC benchmarks.  */#include <fcntl.h>int_DEFUN(creat, (path, mode),        const char *path _AND        mode_t mode){  return open (path, O_WRONLY | O_CREAT | O_TRUNC, mode);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?