swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: ca028dd1ccd6756050a0b226609e0a790b1b60b1 authored by Eric Fischer on 23 November 2017, 01:53:25 UTC
Merge pull request #495 from mapbox/bare-geom-crash
Tip revision: ca028dd
pool.hpp
#ifndef POOL_HPP
#define POOL_HPP

struct stringpool {
	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
back to top