Revision fcab1da9525095c81da5ff806f402713df2cda6a authored by Eric Fischer on 08 April 2019, 23:33:03 UTC, committed by Eric Fischer on 08 April 2019, 23:33:03 UTC
2 parent s a8a183d + 9d06af9
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