Revision dc42c7ccc20a4425948ecf070dfa35af27d72a10 authored by Eric Fischer on 30 October 2017, 22:16:07 UTC, committed by GitHub on 30 October 2017, 22:16:07 UTC
Be more careful about corrupt mbtiles files
2 parent s 4c7de92 + faf4065
Raw File
pool.hpp
#ifndef POOL_HPP
#define POOL_HPP

struct stringpool {
	unsigned long left;
	unsigned long right;
	unsigned long off;
};

long long addpool(struct memfile *poolfile, struct memfile *treefile, const char *s, char type);

#endif
back to top