myopen.c
来自「在linux下的聊天软件」· C语言 代码 · 共 29 行
C
29 行
/*
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 + =
减小字号Ctrl + -
显示快捷键?