https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 581728f15719982f37d6b17c5bfc46bb603bb4cc authored by Eric Fischer on 08 January 2016, 19:55:23 UTC
Merge pull request #143 from mapbox/limit-simplify
Tip revision: 581728f
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