https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 93b2687548037617dc0ce07ed85707b04042c0a9 authored by Eric Fischer on 27 August 2015, 23:10:20 UTC
Merge pull request #79 from mapbox/rework-options
Tip revision: 93b2687
memfile.h
struct memfile {
	int fd;
	char *map;
	long long len;
	long long off;
};

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