summaryrefslogtreecommitdiffstats
path: root/src/server/file.h
blob: e61849a03dfa6b457b4e6584fa421724a34714b9 (plain) (blame)
1
2
3
4
5
6
7
#include <unistd.h>

int file_open(char *filename);

int file_getsize(int fd, off_t *size);

int file_read(int fd, void *buf, size_t size, off_t pos);