📄 sfopen.c
字号:
/* Copyright (c) Colorado School of Mines, 2006.*//* All rights reserved. */#include "sfhdr.h"/* * _sfopen() wrapper to allow user sfopen() intercept */extern Sfio_t* _sfopen _ARG_((Sfio_t*, const char*, const char*));#if __STD_CSfio_t* sfopen(Sfio_t* f, const char* file, const char* mode)#elseSfio_t* sfopen(f,file,mode)Sfio_t* f; /* old stream structure */char* file; /* file/string to be opened */reg char* mode; /* mode of the stream */#endif{ return _sfopen(f, file, mode);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -