CeDOS - include/cedos/file.h

include/cedos/file.h (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef FILE_H
#define FILE_H

#include <stdint.h>

#include "cedos/mm/paging.h"

int file_open(const char *pathname, int flags);
int file_openat(int fd, const char *fname, int flags);
int file_read(int fd, char *buffer, uint32_t size);
int file_write(int fd, char *buffer, uint32_t size);

#endif