⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 creat.c

📁 用于嵌入式Linux系统的标准C的库函数
💻 C
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -