https://github.com/mapbox/tippecanoe
Raw File
Tip revision: a1ddfc6b8b40b09f39b131f8cb32638b8f7eb56c authored by Eric Fischer on 17 March 2017, 00:00:19 UTC
Externalize Catch too
Tip revision: a1ddfc6
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);
back to top