📄 myopen.c
字号:
/*
myopen.c
For Free Chat
By Bill Kendrick, ported to NT by Patrick Stepp
kendrick@zippy.sonoma.edu, stepp@adelphia.net
http://zippy.sonoma.edu/kendrick/
October 1, 1996 - August 9, 1997
*/
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include "myopen.h"
#include "defines.h"
/* New myopen which just calls fopen, since locking is done 'higher': */
FILE * myopen(char * file, char * mode)
{
return(fopen(file, mode));
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -