shithub: scc

ref: 08a32f26c08c322c5549b94c05032d2e87f1df3c
dir: /src/libc/stdio/fopen.c/

View raw version
#include <errno.h>
#include <stdio.h>

#include "../libc.h"

#undef fopen

FILE *
fopen(const char * restrict name, const char * restrict mode)
{
	FILE *fp;

	for (fp = __iob; fp < &__iob[FOPEN_MAX]; ++fp) {
		if ((fp->flags & (_IOREAD | _IOWRITE | _IORW)) == 0)
			break;
	}
	if (fp == &__iob[FOPEN_MAX]) {
		errno = ENOMEM;
		return NULL;
	}

	return _fpopen(name, mode, fp);
}