Revision cc28bbab3adde8f020eaf008a4e83d20aed4d8cf authored by Eric Fischer on 26 July 2017, 16:54:49 UTC, committed by Eric Fischer on 26 July 2017, 16:54:49 UTC
1 parent 5a09fcc
Raw File
pool.hpp
#ifndef POOL_HPP
#define POOL_HPP

struct stringpool {
	long long left;
	long long right;
	long long off;
};

long long addpool(struct memfile *poolfile, struct memfile *treefile, const char *s, char type);

#endif
back to top