mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-21 03:55:00 +00:00
13 lines
227 B
C++
13 lines
227 B
C++
#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
|