⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fdopen.c

📁 标准c库代码,可以应用于各个系统提供了大量的基本函数
💻 C
字号:
/*FUNCTION<<fdopen>>---turn open file into a streamINDEX	fdopenINDEX	_fdopen_rANSI_SYNOPSIS	#include <stdio.h>	FILE *fdopen(int <[fd]>, const char *<[mode]>);	FILE *_fdopen_r(void *<[reent]>,                     int <[fd]>, const char *<[mode]>);TRAD_SYNOPSIS	#include <stdio.h>	FILE *fdopen(<[fd]>, <[mode]>)	int <[fd]>;	char *<[mode]>;	FILE *_fdopen_r(<[reent]>, <[fd]>, <[mode]>)	char *<[reent]>;        int <[fd]>;	char *<[mode]>);DESCRIPTION<<fdopen>> produces a file descriptor of type <<FILE *>>, from adescriptor for an already-open file (returned, for example, by thesystem subroutine <<open>> rather than by <<fopen>>).The <[mode]> argument has the same meanings as in <<fopen>>.RETURNSFile pointer or <<NULL>>, as for <<fopen>>.PORTABILITY<<fdopen>> is ANSI.*/#include <sys/types.h>#include <stdio.h>#include <errno.h>#include "local.h"#include <_syslist.h>extern int __sflags ();FILE *_DEFUN (_fdopen_r, (ptr, fd, mode),	struct _reent *ptr _AND	int fd _AND	_CONST char *mode){  register FILE *fp;  int flags, oflags;  if ((flags = __sflags (ptr, mode, &oflags)) == 0)    return 0;  /* make sure the mode the user wants is a subset of the actual mode */#ifdef F_GETFL  if ((fdflags = _fcntl (fd, F_GETFL, 0)) < 0)    return 0;  fdmode = fdflags & O_ACCMODE;  if (fdmode != O_RDWR && (fdmode != (oflags & O_ACCMODE)))    {      ptr->_errno = EBADF;      return 0;    }#endif  if ((fp = __sfp (ptr)) == 0)    return 0;  fp->_flags = flags;  /*   * If opened for appending, but underlying descriptor   * does not have O_APPEND bit set, assert __SAPP so that   * __swrite() will lseek to end before each write.   */#ifdef F_GETFL  if ((oflags & O_APPEND) && !(fdflags & O_APPEND))#endif    fp->_flags |= __SAPP;  fp->_file = fd;  fp->_cookie = (_PTR) fp;#undef _read#undef _write#undef _seek#undef _close  fp->_read = __sread;  fp->_write = __swrite;  fp->_seek = __sseek;  fp->_close = __sclose;  return fp;}#ifndef _REENT_ONLYFILE *_DEFUN (fdopen, (fd, mode),	int fd _AND	_CONST char *mode){  return _fdopen_r (_REENT, fd, mode);}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -