https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 7140a3dd912024326bf49541ad10dcf02b47080a authored by Eric Fischer on 17 March 2016, 18:54:24 UTC
Merge pull request #186 from mapbox/resolution-doc
Tip revision: 7140a3d
pool.h
struct pool_val {
	const char *s;
	int type;
	int n;

	struct pool_val *left;
	struct pool_val *right;

	struct pool_val *next;
};

struct pool {
	struct pool_val **vals;

	struct pool_val *head;
	struct pool_val *tail;
	int n;
};

struct pool_val *pool(struct pool *p, const char *s, int type);
void pool_free(struct pool *p);
void pool_free_strings(struct pool *p);
void pool_init(struct pool *p, int n);
int is_pooled(struct pool *p, const char *s, int type);
back to top