Revision 18b6473cdbac930d56089d9ed20f3c56ec1eb41d authored by Eric Fischer on 05 April 2019, 20:45:55 UTC, committed by GitHub on 05 April 2019, 20:45:55 UTC
Record the command line options in the tileset metadata
2 parent s 945d804 + 382563a
Raw File
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