Revision 970af8109e05c6da27ba2afb3dc7cd804f448a88 authored by Andrew Harvey on 06 April 2018, 00:56:51 UTC, committed by Andrew Harvey on 06 April 2018, 00:56:51 UTC
1 parent 6b29966
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