https://github.com/mapbox/tippecanoe
Raw File
Tip revision: fd5ced69021703f6fe43ed0152f5431b1a1fe7c9 authored by Eric Fischer on 29 October 2015, 23:46:57 UTC
Pay attention to $PREFIX when installing the man page
Tip revision: fd5ced6
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