mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
12 lines
182 B
C
12 lines
182 B
C
|
#ifndef FILE_H
|
||
|
#define FILE_H
|
||
|
|
||
|
struct memblock {
|
||
|
void *buffer;
|
||
|
size_t size;
|
||
|
};
|
||
|
|
||
|
extern int try_to_open_cochran(const char *filename, struct memblock *mem, GError **error);
|
||
|
|
||
|
#endif
|