summaryrefslogtreecommitdiff
path: root/src/user/lib/stdio/file.h
blob: 3bd64a1beec404d4f6563be44604376136f504cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include <stdbool.h>
#include <stdio.h>

struct _LIBC_FILE {
	int fd;
	long pos;
	bool eof;
	bool error;
	int extflags;

	char *readbuf;
	size_t rblen, rbcap;
};