swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: 7a9f1d0977551f0a484783932248b842b8db2b9b authored by Eric Fischer on 08 January 2020, 23:25:16 UTC
Limit the length of the generator_options in the tileset metadata
Tip revision: 7a9f1d0
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