subsurface/file.h
John Van Ostrand d4121fb42a Liquivision import fixes
Fixed rounding of temperatures
Fixed compile warnings

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2014-11-07 13:15:44 -08:00

21 lines
438 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);
extern int try_to_open_liquivision(const char *filename, struct memblock *mem);
#ifdef __cplusplus
extern "C" {
#endif
extern int readfile(const char *filename, struct memblock *mem);
extern timestamp_t parse_date(const char *date);
#ifdef __cplusplus
}
#endif
#endif // FILE_H