📄 creat.c
字号:
/* * $Id: creat.c,v 1.3 2001/01/08 18:26:44 joel Exp $ *//* creat() "system call" */#if HAVE_CONFIG_H#include "config.h"#endif/* This is needed by f2c and therefore the SPEC benchmarks. */#include <fcntl.h>intcreat (const char *path, mode_t mode){ return open (path, O_WRONLY | O_CREAT | O_TRUNC, mode);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -