aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
blob: b3a1ebac3a08a108ea94b058262779f4f14083b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef FILE_H
#define FILE_H

struct memblock {
	void *buffer;
	size_t size;
};

#if 0
extern int try_to_open_cochran(const char *filename, struct memblock *mem, GError **error);
#endif
extern int readfile(const char *filename, struct memblock *mem);

#endif