summaryrefslogtreecommitdiff
path: root/src/user/lib/file.h
blob: 8652566c5384b30a796de9eacf5c492ef3ab40b6 (plain)
1
2
3
4
5
6
7
8
9
#pragma once
#include <stdbool.h>

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