https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 5d701913ab4a54b625042e1d21f2c851675706d4 authored by Eric Fischer on 29 March 2016, 22:08:06 UTC
Merge pull request #199 from mapbox/named-layers
Tip revision: 5d70191
memfile.h
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