mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-22 12:28:03 +00:00
12 lines
235 B
C
12 lines
235 B
C
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);
|