swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: 1ac000b907c14edacf1e324a576304d0f797b541 authored by Eric Fischer on 22 December 2017, 22:34:37 UTC
Don't accept features or geometries inside another object's properties
Tip revision: 1ac000b
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