tippecanoe/pool.hpp

13 lines
239 B
C++
Raw Normal View History

#ifndef POOL_HPP
#define POOL_HPP
struct stringpool {
2017-11-07 23:25:54 +00:00
unsigned long left = 0;
unsigned long right = 0;
unsigned long off = 0;
};
long long addpool(struct memfile *poolfile, struct memfile *treefile, const char *s, char type);
#endif