mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-21 03:55:00 +00:00
17 lines
284 B
C++
17 lines
284 B
C++
#ifndef MEMFILE_HPP
|
|
#define MEMFILE_HPP
|
|
|
|
struct memfile {
|
|
int fd;
|
|
char *map;
|
|
long long len;
|
|
long long off;
|
|
long long tree;
|
|
};
|
|
|
|
struct memfile *memfile_open(int fd);
|
|
int memfile_close(struct memfile *file);
|
|
int memfile_write(struct memfile *file, void *s, long long len);
|
|
|
|
#endif
|