binmode.c
来自「C标准库源代码」· C语言 代码 · 共 20 行
C
20 行
/***
*binmode.c - set global file mode to binary
*
* Copyright (c) 1989-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Sets the global file mode flag to binary. Linking with this file
* sets all files to be opened in binary mode.
*
*******************************************************************************/
#include <cruntime.h>
#include <fcntl.h>
#include <stdlib.h>
/* set default file mode */
int _fmode = _O_BINARY;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?