File:  [MW Coherent from dump] / coherent / b / lib / libc / stdio / fdopen.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed May 29 04:56:35 2019 UTC (7 years ago) by root
Branches: MarkWilliams, MAIN
CVS tags: relic, HEAD
coherent

/*
 * libc/stdio/fdopen.c
 * Standard I/O Library
 * Get file structure for given file descriptor.
 */

#include <stdio.h>

FILE *
fdopen(fd, type)
int	fd;
char	*type;
{
	register FILE	**fpp;
	extern	FILE	*_fopen();

	if (0<=fd && fd<_NFILE) for (fpp = &_fp[0]; fpp < &_fp[_NFILE]; fpp++)
		if (*fpp==NULL || !((*fpp)->_ff2&_FINUSE))
			return (*fpp = _fopen(NULL, type, *fpp, fd));
	return (NULL);
}

/* end of libc/stdio/fdopen.c */

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.