sopen.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 30 行
C
30 行
#include <sys\stat.h>
#include <sys\types.h>
#include <fcntl.h>
#include <share.h>
void main()
{
int handle;
/* open a file for output */
/* replace existing file if it exists */
handle = sopen( "file",
O_WRONLY | O_CREAT | O_TRUNC,
SH_DENYWR,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP );
/* read a file which is assumed to exist */
handle = sopen( "file", O_RDONLY, SH_DENYWR );
/* append to the end of an existing file */
/* write a new file if file does not exist */
handle = sopen( "file",
O_WRONLY | O_CREAT | O_APPEND,
SH_DENYWR,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?